用了十几年的eclipse了, java现在主要用idea,转的过程中,也没感觉有什么不适应。推荐大家使用idea。idea的热部署根eclipse差不多,除了ide配置不同外。
1,修改pom.xml
<!--热部署--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> <scope>true</scope> </dependency>
<!--热部署--> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <fork>true</fork> </configuration> </plugin>
第一个加在dependencies,第二个加在plugins里面。添加完了,加载maven包.
项目右键=》maven =》reimport。
2,idea 编辑器配置
打idea的属性配置如下:
3,注册
快捷键ctrl + shift + alt + /,会弹出如下图,选择注册
配置好了以后,重启一下idea就好。
转载请注明
作者:海底苍鹰
地址:http://blog.51yip.com/android/2050.html