You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
date:2020-08-17 16:00:40 thread:main X-Track: level:ERROR logger:o.springframework.web.servlet.DispatcherServlet message:Context initialization failedorg.springframework.beans.factory.BeanCreationException: Error creating bean with name'org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping': Initialization of bean failed; nested exception is org.springframework.beans.factory.BeanCreationException : Error creating bean with name'org.springframework.web.servlet.handler.MappedInterceptor#2': Bean instantiation via constructor failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate (org.springframework.web.servlet .handler.MappedInterceptor]: Constructor threw exception; nested exception is org.springframework.web.util.pattern.PatternParseException: No more pattern data allowed after {*...} or ** pattern element
In Spring MVC, the path was previously analyzed by AntPathMatcher, but it was changed to use PathPatternParser introduced in WebFlux from Spring 5.3.0.
Description
Part of terasolunaorg/terasoluna-gfw#989
Spring MVC initialization error occurs.
In Spring MVC, the path was previously analyzed by AntPathMatcher, but it was changed to use PathPatternParser introduced in WebFlux from Spring 5.3.0.
Possible Solution
Change the path
/**/*.html
to/*/*.html
However, since the above path is not needed in terasolunaorg/terasoluna-gfw-web-multi-blank#348 and is deleted from the blank, we should finally delete this path. -> #876
Affect versions
Issue links
The text was updated successfully, but these errors were encountered: