摘要: maven依赖 1 <!-- 部署tomcat,排除冲突--> 2 <dependency> 3 <groupId>org.springframework.boot</groupId> 4 <artifactId>spring-boot-starter-tomcat</artifactId> 5 < 阅读全文
posted @ 2019-11-08 22:00 原则 阅读(159) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html xmlns:th="http://www.thymeleaf.org"> <head> <meta content="text/html;charset=UTF-8"/> <title>测试页面</title> </head> <body> </body> 阅读全文
posted @ 2019-11-08 21:54 原则 阅读(319) 评论(0) 推荐(0) 编辑
摘要: jsp项目中运行SpringBootApplication,找不到 /WEB-INF/info.jsp 原因:context路径问题,资源没有打包过去 解决方案如下 1.在jsp目录下 命令行: mvn spring-boot:run 2.添加以下配置类,指明context路径(不推荐) @Conf 阅读全文
posted @ 2019-11-08 21:32 原则 阅读(1009) 评论(0) 推荐(0) 编辑