You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
483 B
Plaintext

1.com.boduo.Application中的main方法直接运行。适用于开发模式
2.打包运行。适用于安装部署。
注:
<!-- 打包运行时需启用以下配置 -->
<resources>
<resource>
<directory>${basedir}/src/lib</directory>
<targetPath>BOOT-INF/lib/</targetPath>
<includes>
<include>**/*.jar</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
<targetPath>BOOT-INF/classes/</targetPath>
</resource>
</resources>