springboot中集成ureport后怎吗根据业务来为/ureport/preview加前缀
时间: 2023-12-27 13:04:46 浏览: 76
Spring boot 集成 ureport
在Spring Boot中集成UReport后,可以通过修改WebMvcConfigurerAdapter的方式为/ureport/preview添加前缀。具体步骤如下:
1. 创建一个WebMvcConfigurerAdapter的子类。
2. 在子类中重写addViewControllers方法,添加一个ViewController,将/ureport/preview请求映射到新的路径上。
示例代码如下:
```java
@Configuration
public class MvcConfigurer extends WebMvcConfigurerAdapter {
@Override
public void addViewControllers(ViewControllerRegistry registry) {
registry.addViewController("/myreport/preview").setViewName("forward:/ureport/preview");
}
}
```
上述代码中将/ureport/preview请求映射到/myreport/preview上。
这样,在浏览器中访问http://localhost:8080/myreport/preview即可打开UReport报表预览页面。
阅读全文