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

Allow component name to be specified in @ControllerAdvice [SPR-16566] #21108

Closed
spring-projects-issues opened this issue Mar 8, 2018 · 3 comments
Assignees
Labels
in: web Issues in web modules (web, webmvc, webflux, websocket) type: enhancement A general enhancement
Milestone

Comments

@spring-projects-issues
Copy link
Collaborator

Peter Luttrell opened SPR-16566 and commented

Please consider adding a property to the @ControllerAdvice and @RestControllerAdvice annotations that provides a hint to SpringBoot naming just like is currently provided for @Controller and @RestController. This would enable users to have two identically named ControllerAdvice classes in different packages peacefully coexist.

For example, these two classes works nicely togather:

com.v1.SomeRestController:

@RestController
public class SomeRestController{
}

com.v2.SomeRestController:

@RestController("someRestController-v2")
public class SomeRestController{
}

So it'd be great if these would also work togather:

com.v1.SomeRestControllerAdvice:

@RestControllerAdvice(assignableTypes = {SomeRestController.class})
public class SomeRestControllerAdvice{
}

com.v2.SomeRestControllerAdvice:

@RestControllerAdvice(assignableTypes = {SomeRestController.class})
public class SomeRestControllerAdvice{
}

But the last class causes the following as of the version of Spring included with Spring Boot 2.0.0.RELEASE:

org.springframework.beans.factory.BeanDefinitionStoreException: Failed to parse configuration class  
        [omitted for brevity]
Caused by: org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'someRestControllerAdvice' for bean class [com.v2.SomeRestControllerAdvice] conflicts with existing, non-compatible bean definition of same name and class [com.v1.SomeRestControllerAdvice]
	at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.checkCandidate(ClassPathBeanDefinitionScanner.java:345) ~[spring-context-4.3.13.RELEASE.jar:4.3.13.RELEASE]
	at org.springframework.context.annotation.ClassPathBeanDefinitionScanner.doScan(ClassPathBeanDefinitionScanner.java:283) ~[spring-context-4.3.13.RELEASE.jar:4.3.13.RELEASE]
	at org.springframework.context.annotation.ComponentScanAnnotationParser.parse(ComponentScanAnnotationParser.java:135) ~[spring-context-4.3.13.RELEASE.jar:4.3.13.RELEASE]
	at org.springframework.context.annotation.ConfigurationClassParser.doProcessConfigurationClass(ConfigurationClassParser.java:287) ~[spring-context-4.3.13.RELEASE.jar:4.3.13.RELEASE]
	at org.springframework.context.annotation.ConfigurationClassParser.processConfigurationClass(ConfigurationClassParser.java:245) ~[spring-context-4.3.13.RELEASE.jar:4.3.13.RELEASE]
	at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:198) ~[spring-context-4.3.13.RELEASE.jar:4.3.13.RELEASE]
	at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:167) ~[spring-context-4.3.13.RELEASE.jar:4.3.13.RELEASE]
	... 13 common frames omitted


Affects: 5.0.4

@spring-projects-issues spring-projects-issues added type: enhancement A general enhancement in: web Issues in web modules (web, webmvc, webflux, websocket) labels Jan 11, 2019
@spring-projects-issues spring-projects-issues added this to the 5.x Backlog milestone Jan 11, 2019
@SeriousJul
Copy link

For those like me coming from search engine, there is an easy workaround to this.

Since @RestControllerAdvice wrap @ControllerAdvice which also wraps @Component, you would have

@RestControllerAdvice(assignableTypes = {SomeRestController.class})
@Component("someRestControllerAdvice-v2")
public class SomeRestControllerAdvice{
}

@sbrannen sbrannen changed the title Add ComponentName Suggestion to ControllerAdvice Annotations [SPR-16566] Allow component name to be specified in @ControllerAdvice [SPR-16566] Aug 17, 2023
@sbrannen sbrannen self-assigned this Aug 18, 2023
@sbrannen sbrannen modified the milestones: 6.x Backlog, 6.1.0-RC1 Aug 18, 2023
@sbrannen
Copy link
Member

For those like me coming from search engine, there is an easy workaround to this.

I haven't tested it, but it should also be possible to specify FullyQualifiedAnnotationBeanNameGenerator.class as the nameGenerator attribute in @ComponentScan to avoid naming clashes for scanned @ControllerAdvice and @RestControllerAdvice beans.

@sbrannen
Copy link
Member

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in: web Issues in web modules (web, webmvc, webflux, websocket) type: enhancement A general enhancement
Projects
None yet
Development

No branches or pull requests

3 participants