springboot的常见配置
Posted wutongshu-master
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot的常见配置相关的知识,希望对你有一定的参考价值。
1.Springboot热部署
热部署的意思就是当任何类发生改变时,通过JVM类加载的方式加载到虚拟机上,这样就不需要我们重启Application类了
做法:
1)添加一个依赖到pom.xml上:
<!--热部署-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
另外确保存在以下插件
<plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin>
2)File-Setting-compiler-勾上Build project automatically
快捷键ctrl + shift + alt + /,选择Registry,勾上 Compiler autoMake allow when app running
当我们修改类的时候就可以看到控制台自动重启
2.修改访问的端口号和上下文路径
server.port=8087
server.servlet.context-path=/springboot
以上是关于springboot的常见配置的主要内容,如果未能解决你的问题,请参考以下文章