Spring Boot
dijk
这个作者很懒,什么都没留下…
展开
-
Skill: Spring Boot: Address already in use-bind
Problem Address already in use-bind when start spring boot project Solution #查看占用当前端口的进程号pid netstat -ano|findstr "8080" #根据查出的进程号终止进程 taskkill /pid 15560 /f 成功: 已终止 PID 为 15560 的进程。 OR #查看占用当前端口的进程...原创 2018-11-04 16:49:08 · 230 阅读 · 0 评论 -
Spring Boot: 打war包并部署到外部Tomcat服务器
Spring Boot 打war包并部署到外部Tomcat服务器 1. 修改pom.xml文件将默认的jar方式改为war <groupId>com.example</groupId> <artifactId>application</artifactId> <version>0.0.1-SNAPSHOT</version>...原创 2019-01-16 08:12:26 · 216 阅读 · 0 评论 -
Spring Boot: Skill: 在自定义类中调用service层等Spring其他层
Spring Boot在自定义类中调用service层等Spring其他层 @Component public class ServerHandler extends IoHandlerAdapter { @Autowired protected HealthDataService healthDataService; private static ServerHandle...原创 2019-02-18 08:42:43 · 306 阅读 · 0 评论 -
Swagger: Swagger2 configurations in Spring Boot
Swagger2 configurations 1. pom.xml &amp;lt;!--swagger-ui--&amp;gt; &amp;lt;dependency&amp;gt; &amp;lt;groupId&amp;gt;io.springfox&amp;lt;/groupId&amp;gt; &amp;lt;artifactId&原创 2019-02-19 08:02:43 · 204 阅读 · 0 评论