idea,gradle的build.gradle依赖

1. dependencies

           //Hibernate
compile group: 'org.hibernate', name: 'hibernate-entitymanager', version: '5.1.16.Final'
        //Springboot
    compile("org.springframework.boot:spring-boot-starter-web:1.5.15.RELEASE")
        // thymeleaf动态模板引擎
    compile("org.thymeleaf:thymeleaf-spring4:3.0.9.RELEASE")
        //mysql
    compile group: 'mysql', name: 'mysql-connector-java', version: '5.1.17'
          //c3p0连接池
    compile group: 'com.mchange', name: 'c3p0', version: '0.9.5.2'
                 // dbutils
    'commons-dbutils', name: 'commons-dbutils', version: '1.6'
                //spring framework
     compile 'org.springframework:spring-context:4.3.19.RELEASE'
                         // SpringData JPA 
    compile("org.springframework.boot:spring-boot-starter-data-jpa:1.5.15.RELEASE")
        //@Autowired自动注入,需要的Spring测试环境框架
    compile("org.springframework.boot:spring-boot-starter-test:1.5.15.RELEASE")

你可能感兴趣的:(idea,gradle的build.gradle依赖)