Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
T
test
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
邬友楠
test
Commits
4f52fa6e
Commit
4f52fa6e
authored
Nov 22, 2019
by
雍欢
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Spring版本升级为4.3.9.RELEASE
parent
0d3c9966
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
19 additions
and
13 deletions
+19
-13
pom.xml
huigou-common/pom.xml
+1
-1
pom.xml
huigou-core-api/pom.xml
+1
-1
pom.xml
huigou-core-impl/pom.xml
+1
-1
pom.xml
huigou-core-proxy/pom.xml
+1
-1
pom.xml
huigou-data/pom.xml
+1
-1
SpringAdaptingCache.java
.../main/java/com/huigou/data/cache/SpringAdaptingCache.java
+7
-1
pom.xml
huigou-loader/pom.xml
+1
-1
pom.xml
huigou-system-common/pom.xml
+1
-1
pom.xml
huigou-uasp/pom.xml
+1
-1
pom.xml
huigou-xt/pom.xml
+1
-1
pom.xml
pom.xml
+3
-3
No files found.
huigou-common/pom.xml
View file @
4f52fa6e
...
...
@@ -6,7 +6,7 @@
<parent>
<groupId>
com.huigou
</groupId>
<artifactId>
root
</artifactId>
<version>
1.1.2
-SNAPSHOT
</version>
<version>
1.1.2
</version>
</parent>
<artifactId>
huigou-common
</artifactId>
<name>
huigou-common
</name>
...
...
huigou-core-api/pom.xml
View file @
4f52fa6e
...
...
@@ -6,7 +6,7 @@
<parent>
<groupId>
com.huigou
</groupId>
<artifactId>
root
</artifactId>
<version>
1.1.2
-SNAPSHOT
</version>
<version>
1.1.2
</version>
</parent>
<artifactId>
huigou-core-api
</artifactId>
<name>
huigou-core-api
</name>
...
...
huigou-core-impl/pom.xml
View file @
4f52fa6e
...
...
@@ -6,7 +6,7 @@
<parent>
<groupId>
com.huigou
</groupId>
<artifactId>
root
</artifactId>
<version>
1.1.2
-SNAPSHOT
</version>
<version>
1.1.2
</version>
</parent>
<artifactId>
huigou-core-impl
</artifactId>
<name>
huigou-core-impl
</name>
...
...
huigou-core-proxy/pom.xml
View file @
4f52fa6e
...
...
@@ -6,7 +6,7 @@
<parent>
<groupId>
com.huigou
</groupId>
<artifactId>
root
</artifactId>
<version>
1.1.2
-SNAPSHOT
</version>
<version>
1.1.2
</version>
</parent>
<artifactId>
huigou-core-proxy
</artifactId>
<name>
huigou-core-proxy
</name>
...
...
huigou-data/pom.xml
View file @
4f52fa6e
...
...
@@ -6,7 +6,7 @@
<parent>
<groupId>
com.huigou
</groupId>
<artifactId>
root
</artifactId>
<version>
1.1.2
-SNAPSHOT
</version>
<version>
1.1.2
</version>
</parent>
<artifactId>
huigou-data
</artifactId>
<name>
huigou-data
</name>
...
...
huigou-data/src/main/java/com/huigou/data/cache/SpringAdaptingCache.java
View file @
4f52fa6e
package
com
.
huigou
.
data
.
cache
;
import
java.io.Serializable
;
import
java.util.concurrent.Callable
;
import
org.springframework.cache.Cache
;
import
org.springframework.cache.support.SimpleValueWrapper
;
...
...
@@ -60,6 +61,11 @@ public class SpringAdaptingCache implements Cache {
return
iCache
.
get
(
cacheKey
,
type
);
}
@Override
public
<
T
>
T
get
(
Object
key
,
Callable
<
T
>
callable
)
{
throw
new
UnsupportedOperationException
(
""
);
}
@Override
public
void
put
(
Object
key
,
Object
value
)
{
String
cacheKey
=
this
.
getCacheKey
(
key
);
...
...
huigou-loader/pom.xml
View file @
4f52fa6e
...
...
@@ -5,7 +5,7 @@
<parent>
<groupId>
com.huigou
</groupId>
<artifactId>
root
</artifactId>
<version>
1.1.2
-SNAPSHOT
</version>
<version>
1.1.2
</version>
</parent>
<artifactId>
huigou-loader
</artifactId>
<packaging>
jar
</packaging>
...
...
huigou-system-common/pom.xml
View file @
4f52fa6e
...
...
@@ -5,7 +5,7 @@
<parent>
<groupId>
com.huigou
</groupId>
<artifactId>
root
</artifactId>
<version>
1.1.2
-SNAPSHOT
</version>
<version>
1.1.2
</version>
</parent>
<artifactId>
huigou-system-common
</artifactId>
...
...
huigou-uasp/pom.xml
View file @
4f52fa6e
...
...
@@ -4,7 +4,7 @@
<parent>
<groupId>
com.huigou
</groupId>
<artifactId>
root
</artifactId>
<version>
1.1.2
-SNAPSHOT
</version>
<version>
1.1.2
</version>
</parent>
<artifactId>
huigou-uasp
</artifactId>
<name>
统一架构平台
</name>
...
...
huigou-xt/pom.xml
View file @
4f52fa6e
...
...
@@ -4,7 +4,7 @@
<parent>
<groupId>
com.huigou
</groupId>
<artifactId>
root
</artifactId>
<version>
1.1.2
-SNAPSHOT
</version>
<version>
1.1.2
</version>
</parent>
<artifactId>
huigou-xt
</artifactId>
<name>
统一应用支撑平台
</name>
...
...
pom.xml
View file @
4f52fa6e
...
...
@@ -6,7 +6,7 @@
<groupId>
com.huigou
</groupId>
<artifactId>
root
</artifactId>
<version>
1.1.2
-SNAPSHOT
</version>
<version>
1.1.2
</version>
<packaging>
pom
</packaging>
<modules>
...
...
@@ -56,7 +56,7 @@
<json-lib.version>
2.4
</json-lib.version>
<xom.version>
1.2.5
</xom.version>
<spring.version>
4.
2.5
.RELEASE
</spring.version>
<spring.version>
4.
3.9
.RELEASE
</spring.version>
<oracle.driver.version>
11.2.0.1.0
</oracle.driver.version>
<sqlserver.driver.version>
1.0
</sqlserver.driver.version>
<huigou.query.version>
1.0.0
</huigou.query.version>
...
...
@@ -158,7 +158,7 @@
<!-- test -->
<junit.version>
4.9
</junit.version>
<spring-data-mongodb.version>
1.9.3.RELEASE
</spring-data-mongodb.version>
<huigou.uasp.version>
1.1.2
-SNAPSHOT
</huigou.uasp.version>
<huigou.uasp.version>
1.1.2
</huigou.uasp.version>
</properties>
<dependencyManagement>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment