springboot maven依赖jar包外置
**********************
示例
*****************
controller 层
HelloController
@RestController
public class HelloController {
@RequestMapping("/hello")
public String hello(){
System.out.println("hello");
return "success";
}
}
**********************
依赖jar包默认打包位置
项目打包
解压 hello.jar:依赖jar包默认存放在BOOT-INF/lib目录中
**********************
依赖jar包外置
pom.xml(build部分)
<build>
<finalName>hello</finalName>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<config