Giter Site home page Giter Site logo

Comments (5)

philwebb avatar philwebb commented on May 1, 2024

I'm not sure exactly what you're trying to do, but perhaps @ControllerAdvice or @RestControllerAdvice might be helpful? If not, please open a new issue at https://github.com/spring-projects/spring-framework/ with some more details so that they can consider the idea.

from spring-boot.

lukalomidze avatar lukalomidze commented on May 1, 2024

The idea is that in spring boot spirit, i.e minimal manual configuration, it would be nice to have an @Interceptor annotation that would take care of registering an annotated interceptor it in InterceptorRegistry

from spring-boot.

philwebb avatar philwebb commented on May 1, 2024

Given that the HandlerInterceptor beans aren't all that common, I'm not sure that we should add an additional annotation.

I guess you're looking for something like this:

@Interceptor(pathPatterns="/foo/*")
class MyInterceptor implements HandlerInterceptor {
   ...
}

Which is a little more concise than:

@Bean
public WebMvcConfigurer myConfigurer() {
	return new WebMvcConfigurer() {

		@Override
		public void addInterceptors(InterceptorRegistry registry) {
			registry.addWebRequestInterceptor(new MyInterceptor()).addPathPatterns("/foo/*");
		}

	};
}

This still feels like a Spring Framework feature to me, especially as the @Controller annotations are there.

I'll flag this one for team-attention to see what other folks in the team think.

from spring-boot.

wilkinsona avatar wilkinsona commented on May 1, 2024

This feels like a Spring Framework issue to me too. I don't think we should have a Boot-specific annotation for automatic registration of Framework's HandlerInterceptor contract.

from spring-boot.

bclozel avatar bclozel commented on May 1, 2024

Thanks for the proposal, but this is indeed a Spring Framework enhancement request. This was already requested and declined in the past. In the meantime, there is less focus on the HandlerInterceptor contract these days.

Closing as a duplicate of spring-projects/spring-framework#9447

from spring-boot.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.