
SpringBoot
csdn-JAVA-LIFE
这个作者很懒,什么都没留下…
展开
-
spring boot中不能识别RestController的原因
而网上给出的例子及解决方案中,只提到了需要pom.xml中增加引入web模块,即如下代码<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency...原创 2018-04-27 17:29:45 · 12939 阅读 · 6 评论 -
Spring boot 添加 Servlet(ServletRegistrationBean)
Spring boot 默认是不支持 JSP 的,所以想用 JSP 就必须使用外部容器来运行,即不能使用嵌入式的 Tomcat 或 Jetty。有时候一些老项目使用的是 JSP 写的页面,后台使用的是 Servlet ,领导要求使用 Spring boot 进行改造,但是改造呢是一个漫长的过程,那么如何让 Spring boot 快速的支持 Servlet 呢?本文来告诉你具体的操作方法。除了...原创 2019-04-16 10:15:59 · 46209 阅读 · 6 评论