# hspider-spring-boot-starter **Repository Path**: fab4/hspider-spring-boot-starter ## Basic Information - **Project Name**: hspider-spring-boot-starter - **Description**: 自定义 spring boot starter - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-03-03 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 自定义的spring boot starter = ####加入引用 ````xml cn.saylife hspider-spring-boot-starter 0.0.1-SNAPSHOT ```` ####测试用例 ```properties person.age=18 person.name=dev person.high=173 ``` ```java @RunWith(SpringRunner.class) @SpringBootTest public class SpiderApplicationTests { @Autowired private PersonService personService; @Test public void contextLoads() { if (null != personService) { System.out.println(personService.sayHello()); } else { System.out.println("null"); } } } ```