您好,登錄后才能下訂單哦!
這期內容當中小編將會給大家帶來有關SpringBoot中怎樣實現熱部署,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
1、引用devtools依賴
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional></dependency>
這樣,當修改一個java類時就會熱更新。
2、自定義配置熱部署
以下配置用于自定義配置熱部署,可以不設置。
# 熱部署開關,false即不啟用熱部署spring.devtools.restart.enabled: true# 指定熱部署的目錄#spring.devtools.restart.additional-paths: src/main/java# 指定目錄不更新spring.devtools.restart.exclude: test/**
3、Intellij Idea修改
如果是idea,需要改以下兩個地方:
1、勾上自動編譯或者手動重新編譯
File > Settings > Compiler-Build Project automatically
2、注冊
ctrl + shift + alt + / > Registry > 勾選Compiler autoMake allow when app running
注意事項
1、生產環境devtools將被禁用,如java -jar方式或者自定義的類加載器等都會識別為生產環境。
2、打包應用默認不會包含devtools,除非你禁用SpringBoot Maven插件的excludeDevtools屬性。
3、Thymeleaf無需配置spring.thymeleaf.cache: false,devtools默認會自動設置,點擊參考完整屬性。
下面是devtools自動配置的部分源碼:
@Order(Ordered.LOWEST_PRECEDENCE)public class DevToolsPropertyDefaultsPostProcessor implements EnvironmentPostProcessor { private static final Map<String, Object> PROPERTIES; static { Map<String, Object> properties = new HashMap<String, Object>(); properties.put("spring.thymeleaf.cache", "false"); properties.put("spring.freemarker.cache", "false"); properties.put("spring.groovy.template.cache", "false"); properties.put("spring.mustache.cache", "false"); properties.put("server.session.persistent", "true"); properties.put("spring.h3.console.enabled", "true"); properties.put("spring.resources.cache-period", "0"); properties.put("spring.resources.chain.cache", "false"); properties.put("spring.template.provider.cache", "false"); properties.put("spring.mvc.log-resolved-exception", "true"); properties.put("server.jsp-servlet.init-parameters.development", "true"); PROPERTIES = Collections.unmodifiableMap(properties); }
4、devtools會在windows資源管理器占用java進程,在開發工具里面殺不掉,只能手動kill掉,不然重啟會選成端口重復綁定報錯。
上述就是小編為大家分享的SpringBoot中怎樣實現熱部署了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。