1 先建立一個空項目(本身起名字)java
2 在1步驟中建立的空項目中建立兩個模塊,建立方式以下圖所示 web
1)建立啓動器模塊用maven項目個人啓動器名稱爲 mao-spring-boot-starterspring
pom.xml以下所示 <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"apache
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.mao.starter</groupId> <artifactId>mao-spring-boot-starter</artifactId> <version>1.0-SNAPSHOT</version> <!-- 啓動器--> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> </properties> <dependencies> <!-- 引入自動配置模塊--> <dependency> <groupId>com.mao-starter</groupId> <artifactId>mao-spring-boot-starter-autoconfigurer</artifactId> <version>0.0.1-SNAPSHOT</version> </dependency> </dependencies>
</project>app
2) 建立自動配置模塊,我建立的名字爲:mao-spring-boot-starter-autoconfigurer以下圖所示 ![](https://oscimg.oschina.net/oscnet/b7c0a779402394cb5783f3f2eae7a5ce0bc.jpg) pom.xml以下所示 <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"maven
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.21.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>com.mao-starter</groupId> <artifactId>mao-spring-boot-starter-autoconfigurer</artifactId> <version>0.0.1-SNAPSHOT</version> <name>mao-spring-boot-starter-autoconfigurer</name> <description>Demo project for Spring Boot</description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <java.version>1.8</java.version> </properties>
<!-- 全部要引入的基本配置-->spring-boot
<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dependency> </dependencies>
</project>測試
3 建立以下圖的3個類ui
helloProperties.java //屬性類this
package com.maostarter.mao;
import org.springframework.boot.context.properties.ConfigurationProperties;
@ConfigurationProperties(prefix = "map.hello")
public class helloProperties {
public String prefix; public String getPrefix() { return prefix; } public void setPrefix(String prefix) { this.prefix = prefix; } public String getSuffix() { return suffix; } public void setSuffix(String suffix) { this.suffix = suffix; } private String suffix;
}
HelloService.java //向外提供服務的類
public class HelloService {
helloProperties helloPropertie; public helloProperties getHelloPropertie() { return helloPropertie; } public void setHelloPropertie(helloProperties helloPropertie) { this.helloPropertie = helloPropertie; } public String sayHelloMao(String name){ return helloPropertie.getPrefix()+'*'+name+helloPropertie.getSuffix(); }
}
helloServiceAutoConfiguration.java //服務自動注入類
@Configuration
@ConditionalOnWebApplication //web應用才生效
@EnableConfigurationProperties(helloProperties.class)
public class helloServiceAutoConfiguration {
@Autowired helloProperties helloPropertie; @Bean public HelloService helloService(){ HelloService service = new HelloService(); service.setHelloPropertie(helloPropertie); return service; }
}
4 配置spring.factories文件,以下圖建立方式
spring.factories
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
com.maostarter.mao.helloServiceAutoConfiguration
5 如何生成starter,在這個過程有肯能出現各個問題,通常是jdk版本不對,maven版本問題,出現問題首先仔細閱讀控制檯的信息
不要一出現問題就百度
6 測試剛剛建立的自定義starter建立個springBoot項目
pom.xml以下所示
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.6.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>com.autostart.test</groupId> <artifactId>autostart</artifactId> <version>0.0.1-SNAPSHOT</version> <name>autostart</name> <description>Demo project for Spring Boot</description> <properties> <java.version>1.8</java.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>com.mao.starter</groupId> <artifactId>mao-spring-boot-starter</artifactId> <version>1.0-SNAPSHOT</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build>
</project>
6 給以前配置的屬性文件複製 以下圖所示
7 建立一個測試用例
@Controller
public class HelloController {
@Autowired HelloService helloService; @ResponseBody @RequestMapping("/hello") public String Hello(){ return helloService.sayHelloMao("haha"); }
}
8 測試結果以下圖所示