目的是为了验证主工程调用工具工程。
1、新建模块,名称为WebTool
同样为Maven Archetype,类型为
org.apache.maven.archetypes:maven-archetype-quickstart
2、修改pom.xml
增加spring-boot-starter的依赖。
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter</artifactId></dependency>
刷新maven工程
3、修改App启动程序
@SpringBootApplication
public class App
{public static void main( String[] args ){SpringApplication.run(App.class,args);System.out.println( "Hello World!" );}
}
4、新增工具包
org.rainpet.Utils
5、增加新的测试工具类
package org.rainpet.Utils;public class StrUtils {public static String Demo(String a){return "Demo "+a;}
}
6、在webDemo1工程中,pom.xml中增加WebTool的引用
<dependency><groupId>org.rainpet</groupId><artifactId>WebTool</artifactId><version>1.0-SNAPSHOT</version></dependency>
7、控制器中增加测试方法:
@GetMapping("str")@ResponseBodypublic String str(){return StrUtils.Demo("ss");}
8、重启程序,访问http://localhost:8081/demo/str 即可看到效果