org.springframework.web.reactive.result.view.freemarker.FreeMarkerConfigurer Java Examples

The following examples show how to use org.springframework.web.reactive.result.view.freemarker.FreeMarkerConfigurer. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ViewResolverRegistry.java    From spring-analysis-note with MIT License 6 votes vote down vote up
/**
 * Register a {@code FreeMarkerViewResolver} with a ".ftl" suffix.
 * <p><strong>Note</strong> that you must also configure FreeMarker by
 * adding a {@link FreeMarkerConfigurer} bean.
 */
public UrlBasedViewResolverRegistration freeMarker() {
	if (!checkBeanOfType(FreeMarkerConfigurer.class)) {
		throw new BeanInitializationException("In addition to a FreeMarker view resolver " +
				"there must also be a single FreeMarkerConfig bean in this web application context " +
				"(or its parent): FreeMarkerConfigurer is the usual implementation. " +
				"This bean may be given any name.");
	}
	FreeMarkerRegistration registration = new FreeMarkerRegistration();
	UrlBasedViewResolver resolver = registration.getViewResolver();
	if (this.applicationContext != null) {
		resolver.setApplicationContext(this.applicationContext);
	}
	this.viewResolvers.add(resolver);
	return registration;
}
 
Example #2
Source File: ViewResolverRegistry.java    From java-technology-stack with MIT License 6 votes vote down vote up
/**
 * Register a {@code FreeMarkerViewResolver} with a ".ftl" suffix.
 * <p><strong>Note</strong> that you must also configure FreeMarker by
 * adding a {@link FreeMarkerConfigurer} bean.
 */
public UrlBasedViewResolverRegistration freeMarker() {
	if (!checkBeanOfType(FreeMarkerConfigurer.class)) {
		throw new BeanInitializationException("In addition to a FreeMarker view resolver " +
				"there must also be a single FreeMarkerConfig bean in this web application context " +
				"(or its parent): FreeMarkerConfigurer is the usual implementation. " +
				"This bean may be given any name.");
	}
	FreeMarkerRegistration registration = new FreeMarkerRegistration();
	UrlBasedViewResolver resolver = registration.getViewResolver();
	if (this.applicationContext != null) {
		resolver.setApplicationContext(this.applicationContext);
	}
	this.viewResolvers.add(resolver);
	return registration;
}
 
Example #3
Source File: ViewResolverRegistryTests.java    From spring-analysis-note with MIT License 5 votes vote down vote up
@Before
public void setup() {
	StaticWebApplicationContext context = new StaticWebApplicationContext();
	context.registerSingleton("freeMarkerConfigurer", FreeMarkerConfigurer.class);
	context.registerSingleton("scriptTemplateConfigurer", ScriptTemplateConfigurer.class);
	this.registry = new ViewResolverRegistry(context);
}
 
Example #4
Source File: RequestMappingViewResolutionIntegrationTests.java    From spring-analysis-note with MIT License 5 votes vote down vote up
@Bean
public FreeMarkerConfigurer freeMarkerConfig() {
	FreeMarkerConfigurer configurer = new FreeMarkerConfigurer();
	configurer.setPreferFileSystemAccess(false);
	configurer.setTemplateLoaderPath("classpath*:org/springframework/web/reactive/view/freemarker/");
	return configurer;
}
 
Example #5
Source File: ViewResolverRegistryTests.java    From java-technology-stack with MIT License 5 votes vote down vote up
@Before
public void setup() {
	StaticWebApplicationContext context = new StaticWebApplicationContext();
	context.registerSingleton("freeMarkerConfigurer", FreeMarkerConfigurer.class);
	context.registerSingleton("scriptTemplateConfigurer", ScriptTemplateConfigurer.class);
	this.registry = new ViewResolverRegistry(context);
}
 
Example #6
Source File: RequestMappingViewResolutionIntegrationTests.java    From java-technology-stack with MIT License 5 votes vote down vote up
@Bean
public FreeMarkerConfigurer freeMarkerConfig() {
	FreeMarkerConfigurer configurer = new FreeMarkerConfigurer();
	configurer.setPreferFileSystemAccess(false);
	configurer.setTemplateLoaderPath("classpath*:org/springframework/web/reactive/view/freemarker/");
	return configurer;
}
 
Example #7
Source File: WebConfig.java    From webFluxTemplate with MIT License 5 votes vote down vote up
@Bean
public FreeMarkerConfigurer freeMarkerConfigurer(ReactiveWebApplicationContext applicationContext) {
	FreeMarkerConfigurer configurer = new FreeMarkerConfigurer();
	configurer.setTemplateLoaderPath("classpath:/templates/");
	configurer.setResourceLoader(applicationContext);
	return configurer;
}
 
Example #8
Source File: WebConfig.java    From spring-reactive-sample with GNU General Public License v3.0 5 votes vote down vote up
@Bean
public FreeMarkerConfigurer freeMarkerConfig() {
    Map<String, Object> variables = new HashMap<>();
    variables.put("xml_escape", new XmlEscape());

    FreeMarkerConfigurer configurer = new FreeMarkerConfigurer();
    configurer.setPreferFileSystemAccess(false);
    configurer.setTemplateLoaderPath("classpath:/templates");
    configurer.setResourceLoader(this.ctx);
    configurer.setFreemarkerVariables(variables);

    return configurer;
}
 
Example #9
Source File: WebConfig.java    From spring-reactive-sample with GNU General Public License v3.0 5 votes vote down vote up
@Bean
public FreeMarkerConfigurer freeMarkerConfig() {
    FreeMarkerConfigurer configurer = new FreeMarkerConfigurer();
    configurer.setPreferFileSystemAccess(false);
    configurer.setTemplateLoaderPath("classpath:/templates/");
    configurer.setResourceLoader(this.ctx);
    return configurer;
}
 
Example #10
Source File: WebFluxConfigurationSupportTests.java    From spring-analysis-note with MIT License 4 votes vote down vote up
@Bean
public FreeMarkerConfigurer freeMarkerConfig() {
	return new FreeMarkerConfigurer();
}
 
Example #11
Source File: WebFluxConfigurationSupportTests.java    From java-technology-stack with MIT License 4 votes vote down vote up
@Bean
public FreeMarkerConfigurer freeMarkerConfig() {
	return new FreeMarkerConfigurer();
}
 
Example #12
Source File: WebfluxConfig.java    From Hands-On-Reactive-Programming-with-Reactor with MIT License 4 votes vote down vote up
@Bean
public FreeMarkerConfigurer freeMarkerConfigurer() {
    FreeMarkerConfigurer configurer = new FreeMarkerConfigurer();
    configurer.setTemplateLoaderPath("classpath:/freemarker/");
    return configurer;
}
 
Example #13
Source File: WebfluxConfig.java    From Hands-On-Reactive-Programming-with-Reactor with MIT License 4 votes vote down vote up
@Bean
public FreeMarkerConfigurer freeMarkerConfigurer() {
    FreeMarkerConfigurer configurer = new FreeMarkerConfigurer();
    configurer.setTemplateLoaderPath("classpath:/freemarker/");
    return configurer;
}
 
Example #14
Source File: WebfluxConfig.java    From Hands-On-Reactive-Programming-with-Reactor with MIT License 4 votes vote down vote up
@Bean
public FreeMarkerConfigurer freeMarkerConfigurer() {
    FreeMarkerConfigurer configurer = new FreeMarkerConfigurer();
    configurer.setTemplateLoaderPath("classpath:/freemarker/");
    return configurer;
}
 
Example #15
Source File: WebfluxConfig.java    From Hands-On-Reactive-Programming-with-Reactor with MIT License 4 votes vote down vote up
@Bean
public FreeMarkerConfigurer freeMarkerConfigurer() {
    FreeMarkerConfigurer configurer = new FreeMarkerConfigurer();
    configurer.setTemplateLoaderPath("classpath:/freemarker/");
    return configurer;
}