springboot + JSP
程序员文章站
2022-05-26 10:13:44
...
添加JPS引擎依赖
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
</dependency>
创建webapp文件夹里面放jsp文件
yml配置
server:
port: 9090
spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://192.168.1.6:3306/quartz?characterEncoding=utf8&serverTimezone=UTC&rewriteBatchedStatements=true&allowPublicKeyRetrieval=true&useSSL=false
username: sa
password: 123456
# resources:
# static-locations: classpath:/templates #访问静态页面
# thymeleaf:
# mode: LEGACYHTML5 #取消thymeleaf严格的html5校验
# prefix: classpath:/templates
# suffix: .html
mvc:
view:
prefix: / #jsp模板引擎配置
suffix: .jsp
将关于thymeleaf的全部删除
Controller
/**
* 测试整合jsp
* @return Result
*/
@GetMapping(value = "/testJsp")
public String testJsp(){
return "test";
}
效果
推荐阅读
-
vue项目怎么嵌入jsp页面?(方法介绍)
-
Springboot 使用@Valid+BindingResult进行controller层接口参数校验
-
SpringBoot表单验证(注解验证)@Validated使用
-
SpringBoot与Quartz集成实现分布式定时任务集群的代码实例
-
详解SpringBoot和Mybatis配置多数据源
-
JSP 获取spring容器中bean的两种方法总结
-
SpringBoot+Swagger-ui自动生成API文档
-
springboot集成rabbitMQ之对象传输的方法
-
java JSP开发之Spring中Bean的使用
-
Springboot2.X集成redis集群(Lettuce)连接的方法