Spring 实用技巧 总结项目经验的时候,提取的一些有用常用的spring技巧 Spring gradle依赖插件省略版本号 buildscript { dependencies { classpath("io.spring.gradle:dependency-management-plugin:$dependencyManagementVersion") } } plugins { id 'java-library' } group 'com.sea' version '1.0-SNAPSHOT' subprojects { repositories { mavenLocal() mavenCentral() } apply plugin: 'io.spring.dependency-management' dependencyManagement { imports { mavenBom "com.sea:dependency-management:1.0-SNAPSHOT" } } dependencies { // springboot annotationProcessor("org.springframework.boot:spring-boot-configuration-processor") api("org.springframework.boot:spring-boot-autoconfigure") api "org.springframework.boot:spring-boot-starter-web......