Commit e79343cf by Jason Song

Merge pull request #113 from lepdou/portal

common add aop dependency
parents 9bf8ec43 ef14205d
...@@ -35,6 +35,10 @@ ...@@ -35,6 +35,10 @@
<artifactId>spring-cloud-starter-spectator</artifactId> <artifactId>spring-cloud-starter-spectator</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId> <groupId>org.springframework.data</groupId>
<artifactId>spring-data-commons</artifactId> <artifactId>spring-data-commons</artifactId>
</dependency> </dependency>
......
...@@ -150,6 +150,8 @@ public class ConfigService { ...@@ -150,6 +150,8 @@ public class ConfigService {
enrichChangeSetBaseInfo(changeSets); enrichChangeSetBaseInfo(changeSets);
itemAPI.updateItems(appId, env, clusterName, namespaceName, changeSets); itemAPI.updateItems(appId, env, clusterName, namespaceName, changeSets);
} catch (Exception e) { } catch (Exception e) {
logger.error("itemAPI.updateItems error. appId{},env:{},clusterName:{},namespaceName:{}", appId, env, clusterName,
namespaceName);
throw new ServiceException("oops! call admin service config error. "); throw new ServiceException("oops! call admin service config error. ");
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment