Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
apollo
Project
Overview
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
openSource
apollo
Commits
88b4069b
Commit
88b4069b
authored
Apr 15, 2016
by
Yiming Liu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extract common module
parent
d1c7c2a2
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
45 additions
and
92 deletions
+45
-92
AppController.java
...m/ctrip/apollo/adminservice/controller/AppController.java
+1
-1
ClusterController.java
...rip/apollo/adminservice/controller/ClusterController.java
+1
-1
GlobalDefaultExceptionHandler.java
...dminservice/controller/GlobalDefaultExceptionHandler.java
+0
-71
ItemController.java
.../ctrip/apollo/adminservice/controller/ItemController.java
+1
-1
NamespaceController.java
...p/apollo/adminservice/controller/NamespaceController.java
+1
-1
ReleaseController.java
...rip/apollo/adminservice/controller/ReleaseController.java
+1
-1
AppControllerTest.java
...rip/apollo/adminservice/controller/AppControllerTest.java
+1
-1
pom.xml
apollo-biz/pom.xml
+1
-1
AppService.java
...rc/main/java/com/ctrip/apollo/biz/service/AppService.java
+1
-1
ClusterService.java
...ain/java/com/ctrip/apollo/biz/service/ClusterService.java
+1
-1
ItemService.java
...c/main/java/com/ctrip/apollo/biz/service/ItemService.java
+1
-1
ItemSetService.java
...ain/java/com/ctrip/apollo/biz/service/ItemSetService.java
+1
-1
NamespaceService.java
...n/java/com/ctrip/apollo/biz/service/NamespaceService.java
+1
-1
pom.xml
apollo-common/pom.xml
+23
-0
GlobalDefaultExceptionHandler.java
...ollo/common/controller/GlobalDefaultExceptionHandler.java
+1
-1
BeanUtils.java
...rc/main/java/com/ctrip/apollo/common/utils/BeanUtils.java
+1
-1
pom.xml
apollo-portal/pom.xml
+1
-5
AppController.java
...ava/com/ctrip/apollo/portal/controller/AppController.java
+1
-2
pom.xml
pom.xml
+6
-0
No files found.
apollo-adminservice/src/main/java/com/ctrip/apollo/adminservice/controller/AppController.java
View file @
88b4069b
...
...
@@ -16,7 +16,7 @@ import org.springframework.web.bind.annotation.RestController;
import
com.ctrip.apollo.biz.entity.App
;
import
com.ctrip.apollo.biz.service.AdminService
;
import
com.ctrip.apollo.biz.service.AppService
;
import
com.ctrip.apollo.
biz
.utils.BeanUtils
;
import
com.ctrip.apollo.
common
.utils.BeanUtils
;
import
com.ctrip.apollo.core.dto.AppDTO
;
import
com.ctrip.apollo.core.exception.NotFoundException
;
import
com.ctrip.apollo.core.utils.StringUtils
;
...
...
apollo-adminservice/src/main/java/com/ctrip/apollo/adminservice/controller/ClusterController.java
View file @
88b4069b
...
...
@@ -14,7 +14,7 @@ import org.springframework.web.bind.annotation.RestController;
import
com.ctrip.apollo.biz.entity.Cluster
;
import
com.ctrip.apollo.biz.service.ClusterService
;
import
com.ctrip.apollo.biz.service.ViewService
;
import
com.ctrip.apollo.
biz
.utils.BeanUtils
;
import
com.ctrip.apollo.
common
.utils.BeanUtils
;
import
com.ctrip.apollo.core.dto.ClusterDTO
;
import
com.ctrip.apollo.core.exception.NotFoundException
;
...
...
apollo-adminservice/src/main/java/com/ctrip/apollo/adminservice/controller/GlobalDefaultExceptionHandler.java
deleted
100644 → 0
View file @
d1c7c2a2
package
com
.
ctrip
.
apollo
.
adminservice
.
controller
;
import
org.springframework.http.HttpHeaders
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.ResponseEntity
;
import
org.springframework.web.HttpMediaTypeException
;
import
org.springframework.web.HttpRequestMethodNotSupportedException
;
import
org.springframework.web.bind.annotation.ControllerAdvice
;
import
org.springframework.web.bind.annotation.ExceptionHandler
;
import
org.springframework.web.bind.annotation.ResponseStatus
;
import
com.ctrip.apollo.core.exception.NotFoundException
;
import
java.time.LocalDateTime
;
import
java.time.format.DateTimeFormatter
;
import
java.util.LinkedHashMap
;
import
java.util.Map
;
import
javax.servlet.ServletException
;
import
javax.servlet.http.HttpServletRequest
;
import
static
org
.
springframework
.
http
.
HttpStatus
.
BAD_REQUEST
;
import
static
org
.
springframework
.
http
.
HttpStatus
.
INTERNAL_SERVER_ERROR
;
import
static
org
.
springframework
.
http
.
HttpStatus
.
NOT_FOUND
;
import
static
org
.
springframework
.
http
.
MediaType
.
APPLICATION_JSON
;
@ControllerAdvice
public
class
GlobalDefaultExceptionHandler
{
@ExceptionHandler
(
Exception
.
class
)
public
ResponseEntity
<
Map
<
String
,
Object
>>
exception
(
HttpServletRequest
request
,
Exception
ex
)
{
return
handleError
(
request
,
INTERNAL_SERVER_ERROR
,
ex
);
}
private
ResponseEntity
<
Map
<
String
,
Object
>>
handleError
(
HttpServletRequest
request
,
HttpStatus
status
,
Throwable
ex
)
{
return
handleError
(
request
,
status
,
ex
,
ex
.
getMessage
());
}
private
ResponseEntity
<
Map
<
String
,
Object
>>
handleError
(
HttpServletRequest
request
,
HttpStatus
status
,
Throwable
ex
,
String
message
)
{
ex
=
resolveError
(
ex
);
Map
<
String
,
Object
>
errorAttributes
=
new
LinkedHashMap
<>();
errorAttributes
.
put
(
"status"
,
status
.
value
());
errorAttributes
.
put
(
"message"
,
message
);
errorAttributes
.
put
(
"timestamp"
,
LocalDateTime
.
now
().
format
(
DateTimeFormatter
.
ISO_LOCAL_DATE_TIME
));
errorAttributes
.
put
(
"exception"
,
resolveError
(
ex
).
getClass
().
getName
());
HttpHeaders
headers
=
new
HttpHeaders
();
headers
.
setContentType
(
APPLICATION_JSON
);
return
new
ResponseEntity
<>(
errorAttributes
,
headers
,
status
);
}
@ExceptionHandler
({
HttpRequestMethodNotSupportedException
.
class
,
HttpMediaTypeException
.
class
})
public
ResponseEntity
<
Map
<
String
,
Object
>>
methodNotSupportedException
(
HttpServletRequest
request
,
ServletException
ex
)
{
return
handleError
(
request
,
BAD_REQUEST
,
ex
);
}
@ExceptionHandler
(
NotFoundException
.
class
)
@ResponseStatus
(
value
=
NOT_FOUND
)
public
void
notFound
(
HttpServletRequest
req
,
NotFoundException
ex
)
{
}
private
Throwable
resolveError
(
Throwable
ex
)
{
while
(
ex
instanceof
ServletException
&&
ex
.
getCause
()
!=
null
)
{
ex
=
((
ServletException
)
ex
).
getCause
();
}
return
ex
;
}
}
apollo-adminservice/src/main/java/com/ctrip/apollo/adminservice/controller/ItemController.java
View file @
88b4069b
...
...
@@ -14,7 +14,7 @@ import org.springframework.web.bind.annotation.RestController;
import
com.ctrip.apollo.biz.entity.Item
;
import
com.ctrip.apollo.biz.service.ItemService
;
import
com.ctrip.apollo.biz.service.ViewService
;
import
com.ctrip.apollo.
biz
.utils.BeanUtils
;
import
com.ctrip.apollo.
common
.utils.BeanUtils
;
import
com.ctrip.apollo.core.dto.ItemDTO
;
import
com.ctrip.apollo.core.exception.NotFoundException
;
...
...
apollo-adminservice/src/main/java/com/ctrip/apollo/adminservice/controller/NamespaceController.java
View file @
88b4069b
...
...
@@ -14,7 +14,7 @@ import org.springframework.web.bind.annotation.RestController;
import
com.ctrip.apollo.biz.entity.Namespace
;
import
com.ctrip.apollo.biz.service.NamespaceService
;
import
com.ctrip.apollo.biz.service.ViewService
;
import
com.ctrip.apollo.
biz
.utils.BeanUtils
;
import
com.ctrip.apollo.
common
.utils.BeanUtils
;
import
com.ctrip.apollo.core.dto.NamespaceDTO
;
import
com.ctrip.apollo.core.exception.NotFoundException
;
...
...
apollo-adminservice/src/main/java/com/ctrip/apollo/adminservice/controller/ReleaseController.java
View file @
88b4069b
...
...
@@ -13,7 +13,7 @@ import com.ctrip.apollo.biz.entity.Release;
import
com.ctrip.apollo.biz.service.ConfigService
;
import
com.ctrip.apollo.biz.service.ReleaseService
;
import
com.ctrip.apollo.biz.service.ViewService
;
import
com.ctrip.apollo.
biz
.utils.BeanUtils
;
import
com.ctrip.apollo.
common
.utils.BeanUtils
;
import
com.ctrip.apollo.core.dto.ReleaseDTO
;
import
com.ctrip.apollo.core.exception.NotFoundException
;
...
...
apollo-adminservice/src/test/java/com/ctrip/apollo/adminservice/controller/AppControllerTest.java
View file @
88b4069b
...
...
@@ -10,7 +10,7 @@ import org.springframework.test.context.jdbc.Sql.ExecutionPhase;
import
com.ctrip.apollo.biz.entity.App
;
import
com.ctrip.apollo.biz.repository.AppRepository
;
import
com.ctrip.apollo.
biz
.utils.BeanUtils
;
import
com.ctrip.apollo.
common
.utils.BeanUtils
;
import
com.ctrip.apollo.core.dto.AppDTO
;
public
class
AppControllerTest
extends
AbstractControllerTest
{
...
...
apollo-biz/pom.xml
View file @
88b4069b
...
...
@@ -14,7 +14,7 @@
<dependencies>
<dependency>
<groupId>
com.ctrip.apollo
</groupId>
<artifactId>
apollo-co
re
</artifactId>
<artifactId>
apollo-co
mmon
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
...
...
apollo-biz/src/main/java/com/ctrip/apollo/biz/service/AppService.java
View file @
88b4069b
...
...
@@ -9,7 +9,7 @@ import org.springframework.stereotype.Service;
import
com.ctrip.apollo.biz.entity.App
;
import
com.ctrip.apollo.biz.repository.AppRepository
;
import
com.ctrip.apollo.
biz
.utils.BeanUtils
;
import
com.ctrip.apollo.
common
.utils.BeanUtils
;
@Service
public
class
AppService
{
...
...
apollo-biz/src/main/java/com/ctrip/apollo/biz/service/ClusterService.java
View file @
88b4069b
...
...
@@ -5,7 +5,7 @@ import org.springframework.stereotype.Service;
import
com.ctrip.apollo.biz.entity.Cluster
;
import
com.ctrip.apollo.biz.repository.ClusterRepository
;
import
com.ctrip.apollo.
biz
.utils.BeanUtils
;
import
com.ctrip.apollo.
common
.utils.BeanUtils
;
@Service
public
class
ClusterService
{
...
...
apollo-biz/src/main/java/com/ctrip/apollo/biz/service/ItemService.java
View file @
88b4069b
...
...
@@ -5,7 +5,7 @@ import org.springframework.stereotype.Service;
import
com.ctrip.apollo.biz.entity.Item
;
import
com.ctrip.apollo.biz.repository.ItemRepository
;
import
com.ctrip.apollo.
biz
.utils.BeanUtils
;
import
com.ctrip.apollo.
common
.utils.BeanUtils
;
@Service
public
class
ItemService
{
...
...
apollo-biz/src/main/java/com/ctrip/apollo/biz/service/ItemSetService.java
View file @
88b4069b
...
...
@@ -5,7 +5,7 @@ import org.springframework.stereotype.Service;
import
com.ctrip.apollo.biz.entity.Item
;
import
com.ctrip.apollo.biz.repository.ItemRepository
;
import
com.ctrip.apollo.
biz
.utils.BeanUtils
;
import
com.ctrip.apollo.
common
.utils.BeanUtils
;
import
com.ctrip.apollo.core.dto.ItemChangeSets
;
import
com.ctrip.apollo.core.dto.ItemDTO
;
...
...
apollo-biz/src/main/java/com/ctrip/apollo/biz/service/NamespaceService.java
View file @
88b4069b
...
...
@@ -5,7 +5,7 @@ import org.springframework.stereotype.Service;
import
com.ctrip.apollo.biz.entity.Namespace
;
import
com.ctrip.apollo.biz.repository.NamespaceRepository
;
import
com.ctrip.apollo.
biz
.utils.BeanUtils
;
import
com.ctrip.apollo.
common
.utils.BeanUtils
;
@Service
public
class
NamespaceService
{
...
...
apollo-common/pom.xml
0 → 100644
View file @
88b4069b
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
>
<parent>
<groupId>
com.ctrip.apollo
</groupId>
<artifactId>
apollo
</artifactId>
<version>
0.0.1-SNAPSHOT
</version>
<relativePath>
../pom.xml
</relativePath>
</parent>
<modelVersion>
4.0.0
</modelVersion>
<artifactId>
apollo-common
</artifactId>
<name>
Apollo Common
</name>
<dependencies>
<dependency>
<groupId>
com.ctrip.apollo
</groupId>
<artifactId>
apollo-core
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-web
</artifactId>
</dependency>
</dependencies>
</project>
apollo-
portal/src/main/java/com/ctrip/apollo/portal
/controller/GlobalDefaultExceptionHandler.java
→
apollo-
common/src/main/java/com/ctrip/apollo/common
/controller/GlobalDefaultExceptionHandler.java
View file @
88b4069b
package
com
.
ctrip
.
apollo
.
portal
.
controller
;
package
com
.
ctrip
.
apollo
.
common
.
controller
;
import
org.springframework.http.HttpHeaders
;
import
org.springframework.http.HttpStatus
;
...
...
apollo-
biz/src/main/java/com/ctrip/apollo/biz
/utils/BeanUtils.java
→
apollo-
common/src/main/java/com/ctrip/apollo/common
/utils/BeanUtils.java
View file @
88b4069b
package
com
.
ctrip
.
apollo
.
biz
.
utils
;
package
com
.
ctrip
.
apollo
.
common
.
utils
;
import
java.lang.reflect.Field
;
import
java.util.ArrayList
;
...
...
apollo-portal/pom.xml
View file @
88b4069b
...
...
@@ -13,11 +13,7 @@
<dependencies>
<dependency>
<groupId>
com.ctrip.apollo
</groupId>
<artifactId>
apollo-core
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-web
</artifactId>
<artifactId>
apollo-common
</artifactId>
</dependency>
</dependencies>
<build>
...
...
apollo-portal/src/main/java/com/ctrip/apollo/portal/controller/AppController.java
View file @
88b4069b
...
...
@@ -12,7 +12,6 @@ import com.ctrip.apollo.core.exception.BadRequestException;
import
com.ctrip.apollo.core.utils.StringUtils
;
import
com.ctrip.apollo.portal.entity.ClusterNavTree
;
import
com.ctrip.apollo.portal.service.AppService
;
import
com.google.common.base.Strings
;
@RestController
@RequestMapping
(
"/apps"
)
...
...
@@ -23,7 +22,7 @@ public class AppController {
@RequestMapping
(
"/{appId}/navtree"
)
public
ClusterNavTree
nav
(
@PathVariable
String
appId
)
{
if
(
String
s
.
isNullOr
Empty
(
appId
))
{
if
(
String
Utils
.
is
Empty
(
appId
))
{
throw
new
BadRequestException
(
"app id can not be empty."
);
}
...
...
pom.xml
View file @
88b4069b
...
...
@@ -90,6 +90,7 @@
<module>
apollo-core
</module>
<module>
apollo-client
</module>
<module>
apollo-biz
</module>
<module>
apollo-common
</module>
<module>
apollo-configservice
</module>
<module>
apollo-adminservice
</module>
<module>
apollo-portal
</module>
...
...
@@ -109,6 +110,11 @@
<version>
${project.version}
</version>
</dependency>
<dependency>
<groupId>
com.ctrip.apollo
</groupId>
<artifactId>
apollo-common
</artifactId>
<version>
${project.version}
</version>
</dependency>
<dependency>
<groupId>
com.ctrip.framework
</groupId>
<artifactId>
framework-foundation
</artifactId>
<version>
1.1.4
</version>
...
...
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