"集成后 运行项目控制台不打印 center strat with…..,浏览器请求报表中心后下载页面 jsp 文件,有无最新版本润乾集成例子 git"
集成后 运行项目控制台不打印 center strat with…..,浏览器请求报表中心后下载页面 jsp 文件,有无最新版本润乾集成例子 git
一:浏览器请求报表中,下载 jsp 文件,这个应该是 springboot 没有增加 jsp 的支持,这个需要在 pom 中增加:
<dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> </dependency> <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-jasper</artifactId> </dependency>
二,报表中心有自己的 servlet,需要在 springboot 中注册,可以单独写类注册,或者可以参考下这个:SpringBoot 部署教程
一:浏览器请求报表中,下载 jsp 文件,这个应该是 springboot 没有增加 jsp 的支持,这个需要在 pom 中增加:
二,报表中心有自己的 servlet,需要在 springboot 中注册,可以单独写类注册,或者可以参考下这个:
SpringBoot 部署教程