共计 4212 个字符,预计需要花费 11 分钟才能阅读完成。
文 | 平哥 日期 | 20200922
0 Spring Boot 简介
什么是 Spring Boot
Spring Boot makes it easy to create stand-alone, production-grade Spring based Applications that you can “just run”.
Spring Boot 使你能够只“仅仅运行”来很容易的创立基于 Spring 的、生产级的独立利用
Spring Boot 特色
- Create stand-alone Spring applications
- Embed Tomcat, Jetty or Undertow directly (no need to deploy WAR files)
- Provide opinionated ‘starter’ dependencies to simplify your build configuration
- Automatically configure Spring and 3rd party libraries whenever possible
- Provide production-ready features such as metrics, health checks, and externalized configuration
- Absolutely no code generation and no requirement for XML configuration
- 能够创立独立的 Spring 应用程序
- 间接嵌入了 Tomcat、Jetty、Undertow 等 Web 容器,所以在应用 SpringBoot 做 Web 开发时不须要部署 WAR 文件
- 通过提供本人的启动器 (Starter) 依赖,简化我的项目构建配置
- 尽量的主动配置 Spring 和第三方库
- 相对没有代码生成,也不须要 XML 配置文件
1 Spring Boot 搭建 SSM 框架
1.1 Idea 创立我的项目
利用 IDEA 创立 Spring Boot 我的项目:
新建我的项目,抉择 Spring Initializr:
1.2 设置项目名称、相干包信息、JDK 信息
输出我的项目信息:
1.3 抉择 SSM 相干依赖
抉择 SSM 相干依赖,idea 会主动为 pom 文件中增加相干依赖
1.4 配置数据库参数
在配置文件:application.yml 中配置数据库的驱动、url 和账号密码:
spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://localhost:3306/tingyu?useUnicode=true&characterEncoding=utf8&autoReconnect=true&useSSL=false
username: root
password: root
1.5 MyBatis 映射文件配置
2 Spring Boot 整合 Druid
2.1 增加 Druid 依赖
<!--Druid 依赖 -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>1.1.10</version>
</dependency>
2.2 配置 druid 参数
在配置文件 application.yml 中配置 Druid 相干参数:
spring:
datasource:
type: com.alibaba.druid.pool.DruidDataSource
druid:
# 连接池的配置信息
# 初始化大小,最小,最大
initial-size: 5
min-idle: 5
maxActive: 20
# 配置获取连贯期待超时的工夫
maxWait: 60000
# 配置距离多久才进行一次检测,检测须要敞开的闲暇连贯,单位是毫秒
timeBetweenEvictionRunsMillis: 60000
# 配置一个连贯在池中最小生存的工夫,单位是毫秒
minEvictableIdleTimeMillis: 300000
validationQuery: SELECT 1
testWhileIdle: true
testOnBorrow: false
testOnReturn: false
# 关上 PSCache,并且指定每个连贯上 PSCache 的大小
poolPreparedStatements: true
maxPoolPreparedStatementPerConnectionSize: 20
# 配置监控统计拦挡的 filters,去掉后监控界面 sql 无奈统计,'wall' 用于防火墙
filters: stat,wall,slf4j
# 通过 connectProperties 属性来关上 mergeSql 性能;慢 SQL 记录
connectionProperties: druid.stat.mergeSql\=true;druid.stat.slowSqlMillis\=5000
# 配置 DruidStatFilter
web-stat-filter:
enabled: true
url-pattern: "/*"
exclusions: "*.js,*.gif,*.jpg,*.bmp,*.png,*.css,*.ico,/druid/*"
# 配置 DruidStatViewServlet
stat-view-servlet:
url-pattern: "/druid/*"
# IP 白名单(没有配置或者为空,则容许所有拜访)
allow: 127.0.0.1,192.168.163.1
# IP 黑名单 (存在独特时,deny 优先于 allow)
deny: 192.168.1.188
# 禁用 HTML 页面上的“Reset All”性能
reset-enable: false
# 登录名
login-username: admin
# 登录明码
login-password: 123456
2.3 整合胜利验证:
启动我的项目后,通过浏览器拜访:http://localhost:8080/druid/login.html,呈现如下页面:
输出配置文件里配置的登录名和登录明码,即可拜访 Druid 控制台:
3 Spring Boot 整合 PageHelper
在以前本人敲的分页代码中,除了进行查问条件下的分页数据查问,还须要再进行雷同条件下的数量查问,较为麻烦,PageHelper 就解决了这个问题,咱们只需进行失常数据查问,不须要思考分页,通过 PageHelper 即可主动分页以及查问所有数据
3.1 增加 PageHelper 依赖
<!-- 增加 pageHelper 依赖 -->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>1.2.12</version>
</dependency>
3.2 具体应用
Mapper 层失常编写代码:
Mapper 文件:
public interface MarriedPersonMapper {public List<MarriedPerson> selectMarriedPerson(@Param("pname") String pname, @Param("pphone") String pphone);
}
Mapper xml 文件:
<mapper namespace="com.gcp.mapper.MarriedPersonMapper">
<select id="selectMarriedPerson" resultType="com.gcp.pojo.MarriedPerson">
select * from t_married_person
<where>
<if test="pname!=null and pname!=''">
and pname like concat('%', #{pname}, '%')
</if>
<if test="pphone!=null and pphone!=''">
and pphone = #{pphone}
</if>
</where>
</select>
</mapper>
在 Service 层代码应用 PageHelper:
public PageResult<MarriedPerson> selectMarriedPerson(Integer page, Integer rows, String pname, String pphone) {Page<MarriedPerson> resultPage = PageHelper.startPage(page, rows);
List<MarriedPerson> marriedPeople = marriedPersonMapper.selectMarriedPerson(pname, pphone);
return new PageResult<>(resultPage.getResult(),resultPage.getTotal());
}
返回的对象 PageResult,有两个属性,并提供 getter、setter 办法:
public class PageResult<T> {
private List<T> rows;
private Long total;
// 省略结构器和 getter、setter 办法
}
此时进行查问,即可实现分页操作。
4 Spring Boot 整合 JSP
4.1 引入依赖、创立目录
引入依赖:
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<scope>provided</scope>
</dependency>
1、在 src/main 目录下创立 webapp 目录
2、将 webapp 目录设置为资源目录
4.2 在 yml 配置文件中配置视图解析器参数
spring
# SpringMVC 的外部资源视图解析器
mvc:
view:
prefix: /WEB-INF/pages/
suffix: .jsp
4.3 编写 Controller 的单元办法申请转发 jsp 资源
@RequestMapping("{urlPath}")
public String publicController(@PathVariable String urlPath){return urlPath;}