SpringBoot2.0搭建:集成MyBatis,热部署,redis写的增删改查demo(三)

本文介绍了如何使用SpringBoot2.0搭建项目,集成MyBatis和Redis,并实现热部署。解决了页面刷新无效和Redis配置问题。此外,还展示了使用layUI作为前端框架进行页面布局,支持jQuery Ajax交互,提供美观的用户界面。
摘要由CSDN通过智能技术生成

第三篇,我把编译器改为sts了,修复:

1、热部署不生效,页面刷新无效问题

2、redis不生效问题

3、前端框架布局:layUI 

——————————————————

一、热部署

1、pom.xml

		<!-- 启动热部署插件 -->
		<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <optional>true</optional>
        </dependency>
<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
			<configuration>
					<!--fork :  如果没有该项配置,肯定devtools不会起作用,即应用不会restart -->
					<fork>true</fork>
			</configuration>
			</plugin>
		</plugins>
	</build>

2、application.properties

页面不刷新的问题:

	#关闭缓存,及时刷新
	spring.freemarker.cache=false
热部署设置:
	#热部署生效
	spring.devtools.restart.enabled=true
	spring.devtools.restart.exclude=META-INF/maven/**,META-INF/resources/**,resources/**,static/**,public/**,templates/**,**/*Test.class,**/*Tests.class,git.properties # Patterns that should be excluded from triggering a full restart.
	#设置重启的目录,添加那个目录的文件需要restart(监听目录)
	spring.devtools.restart.additional-paths=src/main/java
	# 为mybatis设置,生产环境可删除
	restart.include.mapper=/mapper-[%%w-%%.]+jar
	restart.include.pagehelper=/pagehelper-[%%w-%%.]+jar
		
	# 热部署引起的乱码
	spring.http.encoding.force=true
	spring.http.encoding.charset=UTF-8
	spring.http.encoding.enabled=true

二、redis问题:配置了redis后,几乎不会卡顿

1、pom

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值