將一個普通JavaWeb項目改造成 Spring boot 項目


1、新建javaWeb項目:

     

     

2、修改build.gradle文件

     

  •     plugins{
  •         id 'org.springframework.boot'version'2.2.5.RELEASE'
  •         id 'io.spring.dependency-management'version'1.0.9.RELEASE'
  •         id 'java'
  •     }
  •     
  •     repositories{
  •         maven{
  •          url"http://maven.aliyun.com/nexus/content/groups/public/"
  •         }
  •     }
  •     
  •     dependencies{
  •         implementation'org.springframework.boot:spring-boot-starter-web'
  •         testImplementation('org.springframework.boot:spring-boot-starter-test'){
  •         excludegroup:'org.junit.vintage',module:'junit-vintage-engine'
  •         }
  •     }

     

     

     

3、新建Application.class 啟動類。


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM