Class RewriteAutoConfiguration
- java.lang.Object
-
- org.joinfaces.autoconfigure.rewrite.RewriteAutoConfiguration
-
@Configuration @EnableConfigurationProperties(RewriteProperties.class) @ConditionalOnClass(org.ocpsoft.rewrite.servlet.RewriteFilter.class) @AutoConfigureAfter(org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration.class) @ConditionalOnWebApplication(type=SERVLET) public class RewriteAutoConfiguration extends java.lang.Object
Spring Boot Auto Configuration of Rewrite.
-
-
Constructor Summary
Constructors Constructor Description RewriteAutoConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ApplicationContextProvider
applicationContextProvider()
org.ocpsoft.rewrite.spring.SpringExpressionLanguageProvider
rewriteExpressionLanguageProvider()
WebFragmentRegistrationBean
rewriteWebFragmentRegistrationBean()
ThisWebFragmentRegistrationBean
is equivalent to theMETA-INF/web-fragment.xml
of therewrite-servlet.jar
.
-
-
-
Method Detail
-
rewriteWebFragmentRegistrationBean
@Bean @DependsOn("applicationContextProvider") public WebFragmentRegistrationBean rewriteWebFragmentRegistrationBean()
ThisWebFragmentRegistrationBean
is equivalent to theMETA-INF/web-fragment.xml
of therewrite-servlet.jar
.- Returns:
- rewriteWebFragmentRegistrationBean
-
applicationContextProvider
@Bean public ApplicationContextProvider applicationContextProvider()
-
rewriteExpressionLanguageProvider
@Bean public org.ocpsoft.rewrite.spring.SpringExpressionLanguageProvider rewriteExpressionLanguageProvider()
-
-