spring boot 1、需要导的jar包:

pom.xml中导入如下spring boot基本包,其余的包需要什么包就导入什么包,比如mybatis包,那就像spring先前导包一样.

 

 4.0.0 

 org.springframework 

 gs-spring-boot

 0.1.0 

  

     org.springframework.boot

     spring-boot-starter-parent 

     2.0.5.RELEASE

  

  

      

         org.springframework.boot

         spring-boot-starter-web

      

 

  

     1.8

  

 

      

              

                 org.springframework.boot 

                 spring-boot-maven-plugin

             

         

     

整合时有的时候springboot有的是有提供整合包,比如mybatis直接导入

            org.mybatis.spring.boot

            mybatis-spring-boot-starter

            1.3.1

       

网上整合mybatis pom.xml 模板:

    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

    4.0.0

    com.arm

    demo

    0.0.1-SNAPSHOT

    jar

    demo

    Demo project for Spring Boot

   

        org.springframework.boot

        spring-boot-starter-parent

        1.5.8.RELEASE

       

   

   

        UTF-8

        UTF-8

        1.8

   

   

       

            org.springframework.boot

            spring-boot-starter-data-jpa

       

       

            org.mybatis.spring.boot

            mybatis-spring-boot-starter

            1.3.1

       

       

            org.springframework.boot

            spring-boot-starter-web

       

       

            mysql

            mysql-connector-java

            runtime

       

       

            org.springframework.boot

            spring-boot-starter-test

            test

       

       

            com.alibaba

            druid

            1.1.0

       

   

   

       

           

                org.springframework.boot

                spring-boot-maven-plugin

           

       

   

你可能感兴趣的:(spring boot 1、需要导的jar包:)