博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
一gradle创建SSM项目——依赖包
阅读量:5877 次
发布时间:2019-06-19

本文共 3194 字,大约阅读时间需要 10 分钟。

build.gradle

compile:编译时必须.

runtime:运行时必须,包括编译时。
testCompile:测试编译时必须。
testRuntime:测试运行时必须,包括编译时。
注:此外配置依赖包,还可以模块化配置、导入list、配置是否传递等。

spring_version = "4.1.6.RELEASE"

1 { 2     //springmvc + Spring Configuration 3     compile "org.springframework:spring-web:$spring_version" 4     compile "org.springframework:spring-webmvc:$spring_version" 5     compile "org.springframework:spring-aop:$spring_version" 6     compile "org.springframework:spring-aspects:$spring_version" 7     compile "org.springframework:spring-beans:$spring_version" 8     compile "org.springframework:spring-context:$spring_version" 9     compile "org.springframework:spring-context-support:$spring_version"10     compile "org.springframework:spring-core:$spring_version"11     compile "org.springframework:spring-expression:$spring_version"12     compile "org.springframework:spring-jdbc:$spring_version"13     compile "org.springframework:spring-messaging:$spring_version"14     compile "org.springframework:spring-orm:$spring_version"15     compile "org.springframework:spring-tx:$spring_version"16     compile "org.springframework:spring-test:$spring_version"17 18     //MyBatis-plus (mybatis的增强版)19     compile "com.baomidou:mybatis-plus:2.1.4"20     compile group: 'org.apache.velocity', name: 'velocity', version: '1.7'21 22     //MySQL数据库驱动23     compile "mysql:mysql-connector-java:5.1.23"24 25     //阿里巴巴 数据库连接池26     compile "com.alibaba:druid:1.0.12"27 28     //json解析29     compile "com.google.code.gson:gson:2.7"30 31     //fastjson springmvc 用他来为@ ResponseBody 注解的方法 , 返回 json32     compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: jackson_version33     compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: jackson_version34     compile group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: jackson_version35 36     //日志文件管理包log4j37     compile group: 'log4j', name: 'log4j', version: '1.2.17'38     compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.24'39     compile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.24'40 41     //api文档 自动生成42     compile group: 'io.springfox', name: 'springfox-swagger2', version: '2.7.0'43     compile group: 'io.springfox', name: 'springfox-swagger-ui', version: '2.7.0'44 45     //servlet依赖46     compile group: 'javax.servlet', name: 'javax.servlet-api', version: '3.1.0'47     compile group: 'javax.servlet', name: 'jsp-api', version: '2.0'48 49     //jstl标签库50     compile "taglibs:standard:1.1.2"51     compile "javax.servlet:jstl:1.2"52 53     //公共资源包54     compile "commons-logging:commons-logging:1.2"55     compile "commons-lang:commons-lang:2.6"56     compile "org.apache.commons:commons-collections4:4.0"57     compile "commons-beanutils:commons-beanutils:1.8.3"58     compile "commons-dbcp:commons-dbcp:1.4"59     compile "commons-pool:commons-pool:1.6"60 61     //文件上传62     compile "commons-fileupload:commons-fileupload:1.3.1"63     compile "commons-io:commons-io:2.4"64 65     //AspectJ(切点表达式)66     compile "org.aspectj:aspectjrt:1.7.4"67     compile "org.aspectj:aspectjweaver:1.7.4"68 }

最后附一张build.gradle截图

 

转载于:https://www.cnblogs.com/Im-Victor/p/10857658.html

你可能感兴趣的文章
在浏览器中输入Google.com并且按下回车之后发生了什么?[转]
查看>>
js刷新页面方法
查看>>
java递归理解
查看>>
工业大数据分析平台的应用价值探讨
查看>>
使用maven引入slf4j、logback时发生冲突
查看>>
课堂作业之找小水王
查看>>
团队编程需求分析
查看>>
Repost: Move semantics and smart pointers by Alex --- learncpp
查看>>
js中的 !! 和 ! 的区别
查看>>
ueditor内容带格式回显(html字符串回显)
查看>>
Mysql 函数
查看>>
spring源码-增强容器xml解析-3.1
查看>>
使用iSCSI Target创建集中式安全存储(一)
查看>>
18.一篇文章,从源码深入详解ThreadLocal内存泄漏问题
查看>>
Java网络编程和NIO详解7:浅谈 Linux 中NIO Selector 的实现原理
查看>>
CSS列表
查看>>
proc文件系统探索 之 根目录下的文件[1]
查看>>
Multi-Byte Character Set & Unicode Character Set
查看>>
int,NSInteger,NSUInteger,NSNumber
查看>>
linux并发控制之中断屏蔽
查看>>