spring-boot啟動錯誤
阿新 • • 發佈:2019-01-02
錯誤分析
參考了下其它正確的Spring Boot專案,發現是這行配置及程式碼出錯了
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
1
2
3
4
把它改成如下程式碼,重新install成功了
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
1
2
3
4
spring-boot-starter和spring-boot-starter-web的區別:
spring-boot-starter 是Spring Boot的核心啟動器,包含了自動配置、日誌和YAML
spring-boot-starter-web 支援全棧式Web開發,包括Tomcat和spring-webmvc
參考了下其它正確的Spring Boot專案,發現是這行配置及程式碼出錯了
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
1
2
3
4
把它改成如下程式碼,重新install成功了
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
1
2
3
4
spring-boot-starter和spring-boot-starter-web的區別:
spring-boot-starter 是Spring Boot的核心啟動器,包含了自動配置、日誌和YAML
spring-boot-starter-web 支援全棧式Web開發,包括Tomcat和spring-webmvc
Web開發要用後者。
spring-boot和docker使用:https://www.cnblogs.com/ityouknow/p/8599093.html
這裡有兩個注意點:ADD demo-0.0.1-SNAPSHOT.jar app.jar 中第一個jar是專案的jar包,pom.xml中<dockerDirectory>./src/main/docker</dockerDirectory>要這樣配置