Giter VIP home page Giter VIP logo

Comments (5)

dsyer avatar dsyer commented on April 24, 2024

Your problem is that you don't let Spring create the AppTomcatConnectorCustomizer for you. If you leave out that section of the EmbeddedServletContainerCustomizer it should work, e.g.

    @Bean
    public EmbeddedServletContainerCustomizer containerCustomizer(){
        return new EmbeddedServletContainerCustomizer() {
            @Override
            public void customize(ConfigurableEmbeddedServletContainerFactory factory) {
                factory.addErrorPages(new ErrorPage(HttpStatus.NOT_FOUND, "/error/404.html"));
            }
        };
    }

and the @ComponentScan will pick up the AppTomcatConnectorCustomizer.

This is useful stuff though, so thanks for the sample. It will help get the Tomcat piece of #101 together. Anything you can do to show the steps for Jetty will be tremendously helpful too.

from spring-boot.

berinle avatar berinle commented on April 24, 2024

Thanks Dave. Just getting to a PC. With the section of the EmbeddedServletContainerCustomizer left out, the AppTomcatConnectorCustomizer is still never registered. What works though is autowiring it so that spring does the instantiation instead of doing it via new myself.

I pushed the solution that worked for me up. Let me know if I am missing something.

On the jetty front, I'll work up something tomorrow.

Thanks for your help.

from spring-boot.

berinle avatar berinle commented on April 24, 2024

I'll actually leave this reopened awhile pending Dave's input. If the customizer should be picked up via @ComponentScan without the EmbeddedServletContainerCustomizer logic, then appears that is a bug? Can't get it to work without that logic

from spring-boot.

dsyer avatar dsyer commented on April 24, 2024

Actually I think the current behaviour is correct. If you think it should work differently you can say why here, but my inclination is to leave it as it is (otherwise we'd end up doing autowiring of all the TomcatEmbeddedServletContainerFactory extension points, and the same for Jetty).

from spring-boot.

berinle avatar berinle commented on April 24, 2024

Makes sense Dave. Thanks. That is what I figured, but based on your previous feedback, I thought I might be doing something wrong. The functionality is fine the way it is.

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.