• Spring Boot热部署(springloader)


    使用方式一

    在pom.xml文件添加依赖包:

    <plugin>
                          <groupId>org.springframework.boot</groupId>
                          <artifactId>spring-boot-maven-plugin </artifactId>
                          <dependencies>  
                           <!--springloaded  hot deploy -->  
                           <dependency>  
                               <groupId>org.springframework</groupId>  
                               <artifactId>springloaded</artifactId>  
                               <version>1.2.7.RELEASE</version>
                           </dependency>  
                        </dependencies>  
                        <executions>  
                           <execution>  
                               <goals>  
                                   <goal>repackage</goal>  
                               </goals>  
                               <configuration>  
                                   <classifier>exec</classifier>  
                               </configuration>  
                           </execution>  
                           </executions>
                    </plugin>

    运行方法二

    如果使用的run as – java application的话,那么还需要做一些处理。 把spring-loader-1.2.7.RELEASE.jar下载下来,放到项目的lib目录中,然后把IDEA的run参数里VM参数设置为: -javaagent:.libspringloaded-1.2.4.RELEASE.jar -noverify 然后启动就可以了,这样在run as的时候,也能进行热部署

    视频地址:http://baidu.iqiyi.com/watch/01364273974728388232.html?&recFrom=site&list=1
    博客:
    https://www.cnblogs.com/a8457013/p/8065489.html
    https://www.cnblogs.com/jiangbei/p/8439394.html
    https://www.cnblogs.com/xiong233/p/6796847.html

    Jar包下载工具地址:

    jar 包下载

    http://mvnrepository.com/
    https://jar-download.com
    http://www.mvnjar.com/

    myeclipse导入外部jar包

    https://jingyan.baidu.com/article/11c17a2c290124f446e39d0b.html

    Build-Compiler-Build project automatically  ctrl+shift+A或ctrl+shift+alt+/ 搜索 Registry,找到compiler.automake.allow.when.app.running,开启此功能;

  • 相关阅读:
    物料序号不可修改
    物料序号不可输入
    禁用物料不允许BOM
    MRP工作台任务下达之x组织屏蔽全部发放功能
    MRP工作台任务下达之计划组为必输
    按计划员自动带出对应任务类型
    java.lang.ClassNotFoundException: org.apache.commons.dbcp.BasicDataSource解决方法
    web.xml 中<taglib>报错(转载)
    web.xml元素介绍
    Struts+Tomcat搭建
  • 原文地址:https://www.cnblogs.com/shy1766IT/p/9025428.html
Copyright © 2020-2023  润新知