1.自定义启动器
lmh-hello-spring-boot-starter(启动器)
lmh-hello-spring-boot-starter-autoconfigure(自动配置包)
1.1 创建一个空项目
1.2 在空项目的基础上,添加maven空项目,项目名称叫做
lmh-hello-spring-boot-starter
再添加一个springboot空项目,项目名称lmh-hello-spring-boot-starter-autoconfigure
1.3 lmh-hello-spring-boot-starter(启动器)的pom.xml文件中,将lmh-hello-spring-boot-starter-autoconfigure的groupId和artifactId作为依赖添加进去
1.4 注意每个类所在路径
创建HelloService类,业务处理的过程
public class HelloService {
@Autowired
HelloProperties helloProperties;
/*
* param:用户名
* decription:再用户名前后 加入前后缀
* */
public String sayHello(String userName){
return helloProperties.getPrefix()+":"+userName+" : "+helloProperties.getSuffix