Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

升级到 spring 4.2.4、hibernate validator 5.2.4 #249

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ JeeSite 提供了常用工具进行封装,包括日志工具、缓存工具、

1、后端

* 核心框架:Spring Framework 4.0
* 核心框架:Spring Framework 4.2.4
* 安全框架:Apache Shiro 1.2
* 视图框架:Spring MVC 4.0
* 服务端验证:Hibernate Validator 5.1
* 视图框架:Spring MVC 4.2.4
* 服务端验证:Hibernate Validator 5.2.4
* 布局框架:SiteMesh 2.4
* 工作流引擎:Activiti 5.15、FoxBPM 6
* 任务调度:Spring Task 4.0
* 持久层框架:MyBatis 3.2
* 持久层框架:MyBatis 3.3.1
* 数据库连接池:Alibaba Druid 1.0
* 缓存框架:Ehcache 2.6、Redis
* 日志管理:SLF4J 1.7、Log4j
Expand Down
15 changes: 8 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,13 @@
<properties>

<!-- main version setting -->
<spring.version>4.0.8.RELEASE</spring.version>
<validator.version>5.1.1.Final</validator.version>
<mybatis.version>3.2.8</mybatis.version>
<mybatis-spring.version>1.2.2</mybatis-spring.version>
<druid.version>1.0.11</druid.version>
<ehcache.version>2.6.9</ehcache.version>
<spring.version>4.2.4.RELEASE</spring.version>
<validator.version>5.2.4.Final</validator.version>
<mybatis.version>3.3.1</mybatis.version>
<!-- <mybatis.version>3.2.8</mybatis.version> -->
<mybatis-spring.version>1.2.4</mybatis-spring.version>
<druid.version>1.0.17</druid.version>
<ehcache.version>2.6.11</ehcache.version>
<ehcache-web.version>2.0.4</ehcache-web.version>
<shiro.version>1.2.3</shiro.version>
<sitemesh.version>2.4.2</sitemesh.version>
Expand All @@ -39,7 +40,7 @@
<xstream.version>1.4.7</xstream.version>
<guava.version>17.0</guava.version>
<dozer.version>5.5.1</dozer.version>
<poi.version>3.9</poi.version>
<poi.version>3.13</poi.version>
<freemarker.version>2.3.20</freemarker.version>

<!-- jdbc driver setting -->
Expand Down
Loading