码迷,mamicode.com
首页 > 编程语言 > 详细

springboot的常见配置

时间:2019-05-15 09:16:14      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:快捷   热部署   dev   style   uil   tools   ica   setting   compile   

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的常见配置

标签:快捷   热部署   dev   style   uil   tools   ica   setting   compile   

原文地址:https://www.cnblogs.com/wutongshu-master/p/10867458.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!