idea相关

1. idea不能新建class文件时

在idea.exe.vmoptions 或 idea64.exe.vmoptions中加入配置

-Djdk.util.zip.ensureTrailingSlash=false
2. idea设置不区分大小写

在这里插入图片描述

3.当jsp不支持jstl表达式时在页面加入
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<%@ page isELIgnored="false"%>
4.spring boot热部署不重启项目
  1. idea中的配置 registry 勾选compiler.automake.allow.when.app.running
    1. 按住shift+ctrl+art+A + /
      在这里插入图片描述
    2. 选择Registry
    3. 勾选如图在这里插入图片描述
  2. compiler 中勾选 build project automatically
    在这里插入图片描述
  3. 引入对应的maven包
<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-devtools</artifactId>
			<scope>true</scope>
			<optional>true</optional> <!-- 这个需要为 true 热部署才有效 -->
</dependency>
 
<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
				<configuration>
					<fork>true</fork> <!-- 如果没有该配置,devtools不会生效 -->
				</configuration>
			</plugin>
		</plugins>
</build>

  1. 要在application.properties中添加配置
spring.devtools.restart.enabled = false
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值