maven
一颗小松丸
平均写代码速度:20根头发/分钟
展开
-
创建Maven项目后启动类@SpringBootApplication失效解决方法
Spring Boot的Maven插件(Spring Boot Maven plugin)能够以Maven的方式为应用提供Spring Boot的支持,能够将Spring Boot应用打包为可执行的jar或war文件,以Spring Boot应用运行。 在pom.xml中添加spring-boot-maven-plugin插件 <build> <plugins> <plugin> <groupId>org.原创 2022-02-25 13:48:26 · 1478 阅读 · 0 评论 -
Maven pom.xml 中设置项目JDK版本指定Java1.8
在pom.xml中添加 方法1: <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties> 方法2: <build> <plugins> <p原创 2021-11-29 09:48:10 · 4397 阅读 · 0 评论