工程基本配置,一般都需导入。 包含spring项目所需要的jar、以及一些相关的Component。
包含以下内容
- spring -> 4.3.8.RELEASE(包含:aop、beans、context、core、expression、test、web、webmvc,其余的根据项目所需自行加入)
- slf4j -> 1.7.25
- log4j -> 1.2.17
- mysql -> 5.1.41
1.0.0.RELEASE
- 为工程启动项目模块,基础依赖等,发布初始版本
License |
License |
---|---|
GroupId | GroupIdme.wuwenbin |
ArtifactId | ArtifactIdtemplate-modules-boot |
Last Version | Last Version1.1.0.RELEASE |
Release Date | Release Date |
Type | Typejar |
Description |
Descriptiontemplate-modules-boot
项目启动基础依赖
|
Project URL |
Project URL |
Source Code Management |
Source Code Management |
<!-- https://jarcasting.com/artifacts/me.wuwenbin/template-modules-boot/ -->
<dependency>
<groupId>me.wuwenbin</groupId>
<artifactId>template-modules-boot</artifactId>
<version>1.1.0.RELEASE</version>
</dependency>
// https://jarcasting.com/artifacts/me.wuwenbin/template-modules-boot/
implementation 'me.wuwenbin:template-modules-boot:1.1.0.RELEASE'
// https://jarcasting.com/artifacts/me.wuwenbin/template-modules-boot/
implementation ("me.wuwenbin:template-modules-boot:1.1.0.RELEASE")
'me.wuwenbin:template-modules-boot:jar:1.1.0.RELEASE'
<dependency org="me.wuwenbin" name="template-modules-boot" rev="1.1.0.RELEASE">
<artifact name="template-modules-boot" type="jar" />
</dependency>
@Grapes(
@Grab(group='me.wuwenbin', module='template-modules-boot', version='1.1.0.RELEASE')
)
libraryDependencies += "me.wuwenbin" % "template-modules-boot" % "1.1.0.RELEASE"
[me.wuwenbin/template-modules-boot "1.1.0.RELEASE"]
Group / Artifact | Type | Version |
---|---|---|
me.wuwenbin : template-modules-dao | jar | 1.6.5.RELEASE |
me.wuwenbin : template-utils-lang | jar | 2.7.3.RELEASE |
me.wuwenbin : template-utils-sql | jar | 2.0.1.RELEASE |
org.springframework : spring-webmvc | jar | 4.3.8.RELEASE |
org.springframework : spring-jdbc | jar | 4.3.8.RELEASE |
org.springframework : spring-test | jar | 4.3.8.RELEASE |
javax.servlet.jsp : jsp-api | jar | 2.2 |
javax.servlet : jstl | jar | 1.2 |
org.slf4j : slf4j-api | jar | 1.7.25 |
org.slf4j : slf4j-log4j12 | jar | 1.7.25 |
org.slf4j : jcl-over-slf4j | jar | 1.7.25 |
log4j : log4j | jar | 1.2.17 |
Group / Artifact | Type | Version |
---|---|---|
javax.servlet : javax.servlet-api | jar | 3.0.1 |
mysql : mysql-connector-java | jar | 5.1.41 |
工程基本配置,一般都需导入。 包含spring项目所需要的jar、以及一些相关的Component。