• eclipse 打包springboot成jar


    因为springboot到生产环境是在部署到jar或者war,推荐用jar比较方便

    如下pom.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
        <modelVersion>4.0.0</modelVersion>
        <artifactId>springboot-websocket</artifactId>
        <version>0.0.1</version>
        <name>springboot-websocket</name>
        <description>SpringBoot系列——WebSocket</description>
    
      
      <!--  继承spring-boot-starter-parent  -->
        <parent>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-parent</artifactId>
            <version>2.1.0.RELEASE</version>
            <relativePath/>
        </parent>
    
        <!-- 在引入一下通用的依赖 -->
        <dependencies>
            <!-- spring-boot-starter -->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter</artifactId>
            </dependency>
    
            <!-- springboot web(MVC)-->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-web</artifactId>
            </dependency>
    
            <!-- springboot -->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-test</artifactId>
                <scope>test</scope>
            </dependency>
    
            <!--lombok插件 -->
            <dependency>
                <groupId>org.projectlombok</groupId>
                <artifactId>lombok</artifactId>
            </dependency>
    
            <!--热部署工具dev-tools-->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-devtools</artifactId>
                <optional>true</optional>
                <scope>runtime</scope>
            </dependency>
     
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-websocket</artifactId>
            </dependency>
    
            <!-- thymeleaf模板 -->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-thymeleaf</artifactId>
            </dependency>
                <dependency>
        <groupId>org.java-websocket</groupId>
    <artifactId>Java-WebSocket</artifactId>
    <version>1.3.8</version>
    </dependency>
        </dependencies>
    
        
        <build>
            <finalName>springbootWebSocket</finalName>
            <resources>
                <resource>
                    <directory>src/main/java</directory>
                    <includes>
                        <include>**/*.xml</include>
                    </includes>
                </resource>
                <resource>
                    <directory>src/main/resources</directory>
                    <filtering>true</filtering>
                </resource>
    
            </resources>
            <plugins>
                <plugin>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-maven-plugin</artifactId>
                </plugin>
            </plugins>
            <pluginManagement>
                <plugins>
                    <plugin>
                        <artifactId>maven-resources-plugin</artifactId>
                        <configuration>
                            <encoding>utf-8</encoding>
                            <useDefaultDelimiters>true</useDefaultDelimiters>
                        </configuration>
                    </plugin>
                </plugins>
            </pluginManagement>
    
        </build>
    </project>

    主要注意下:

    <pluginManagement>
                <plugins>
                    <plugin>
                        <artifactId>maven-resources-plugin</artifactId>
                        <configuration>
                            <encoding>utf-8</encoding>
                            <useDefaultDelimiters>true</useDefaultDelimiters>
                        </configuration>
                    </plugin>
                </plugins>
            </pluginManagement>
    步骤:
    1。选中项目,右击run as 顺序运行maven clean再maven install
    2.打包成功之后,可以看到[INFO] BUILD SUCCESS ; 得到springbootWebSocket.jar包里有相关引用的jar
    3.运行java -jar springbootWebSocket.jar
    打包时注意:
    1。不要在pom.xml引用关联外部的子模块或者父模块 2。因本项目使用websocket,在使用类SpringbootWebsocketApplicationTests测试时,
    加上@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
    package cn.huanzi.qch.springbootwebsocket;
    
    import org.junit.Test;
    import org.junit.runner.RunWith;
    import org.springframework.boot.test.context.SpringBootTest;
    import org.springframework.test.context.junit4.SpringRunner;
    
    @RunWith(SpringRunner.class)
    @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
    public class SpringbootWebsocketApplicationTests {
    
        @Test
        public void contextLoads() {
        }
    
    }


  • 相关阅读:
    mysql半同步复制 gtid复制 MHA搭建 孙龙
    mysql数据迁移换主机,换版本升级 孙龙
    cpu和核心关系,负载 lscpu uptime mpstat pidstat iostat iotop 孙龙
    mysql5.7主从复制 孙龙
    mysql information_schema元数据和索引和锁的介绍 孙龙
    mysql存储引擎 ,逻辑结构,存储结构,表空间迁移 孙龙
    mysql日志介绍 孙龙
    mysqldba1安装,权限,多实例,修改密码 孙龙
    mysql事务特性以及事务工作原理,刷盘策略(redo,undo)mysql如何去保证事务的ACID特性 孙龙
    mysql备份恢复与迁移 孙龙
  • 原文地址:https://www.cnblogs.com/fuanyu/p/14754613.html
Copyright © 2020-2023  润新知