@Override
public void prepareForBootstrap( ModuleBootstrapConfig currentModule,
AcrossBootstrapConfig contextConfig ) {
if ( ArrayUtils.contains( supportedViews, AcrossWebViewSupport.JSP ) ) {
currentModule.addApplicationContextConfigurer(
new AnnotatedClassConfigurer( JstlViewSupportConfiguration.class ) );
}
if ( ArrayUtils.contains( supportedViews, AcrossWebViewSupport.THYMELEAF ) ) {
currentModule.addApplicationContextConfigurer(
new AnnotatedClassConfigurer( ThymeleafViewSupportConfiguration.class ) );
}
}