美文网首页
idea,gradle的build.gradle依赖

idea,gradle的build.gradle依赖

作者: 宋song一 | 来源:发表于2018-09-08 12:12 被阅读5次

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依赖

      本文链接:https://www.haomeiwen.com/subject/ziukgftx.html