Springboot运维学习笔记

1、打包

首先要保证又maven插件

	<build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

在这里插入图片描述

2、cmd本地运行jar在这里插入图片描述

3、临时属性

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/Crush_kylin/article/details/121451138