本文整理汇总了Java中org.springframework.boot.autoconfigure.template.TemplateLocation类的典型用法代码示例。如果您正苦于以下问题:Java TemplateLocation类的具体用法?Java TemplateLocation怎么用?Java TemplateLocation使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
TemplateLocation类属于org.springframework.boot.autoconfigure.template包,在下文中一共展示了TemplateLocation类的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: checkTemplateLocationExists
import org.springframework.boot.autoconfigure.template.TemplateLocation; //导入依赖的package包/类
@PostConstruct
public void checkTemplateLocationExists() {
if (this.properties.isCheckTemplateLocation()) {
TemplateLocation templatePathLocation = null;
List<TemplateLocation> locations = new ArrayList<TemplateLocation>();
for (String templateLoaderPath : this.properties.getTemplateLoaderPath()) {
TemplateLocation location = new TemplateLocation(templateLoaderPath);
locations.add(location);
if (location.exists(this.applicationContext)) {
templatePathLocation = location;
break;
}
}
if (templatePathLocation == null) {
logger.warn("Cannot find template location(s): " + locations
+ " (please add some templates, "
+ "check your FreeMarker configuration, or set "
+ "spring.freemarker.checkTemplateLocation=false)");
}
}
}
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:22,代码来源:FreeMarkerAutoConfiguration.java
示例2: checkTemplateLocationExists
import org.springframework.boot.autoconfigure.template.TemplateLocation; //导入依赖的package包/类
@PostConstruct
public void checkTemplateLocationExists() {
if (this.properties.isCheckTemplateLocation()) {
TemplateLocation location = new TemplateLocation(
this.properties.getResourceLoaderPath());
if (!location.exists(this.applicationContext)) {
logger.warn("Cannot find template location: " + location
+ " (please add some templates, check your Velocity "
+ "configuration, or set spring.velocity."
+ "checkTemplateLocation=false)");
}
}
}
开发者ID:LIBCAS,项目名称:ARCLib,代码行数:14,代码来源:VelocityAutoConfiguration.java
示例3: checkTemplateLocationExists
import org.springframework.boot.autoconfigure.template.TemplateLocation; //导入依赖的package包/类
@PostConstruct
public void checkTemplateLocationExists() {
if (this.properties.isCheckTemplateLocation() && !isUsingGroovyAllJar()) {
TemplateLocation location = new TemplateLocation(
this.properties.getResourceLoaderPath());
if (!location.exists(this.applicationContext)) {
logger.warn("Cannot find template location: " + location
+ " (please add some templates, check your Groovy "
+ "configuration, or set spring.groovy.template."
+ "check-template-location=false)");
}
}
}
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:14,代码来源:GroovyTemplateAutoConfiguration.java
示例4: checkTemplateLocationExists
import org.springframework.boot.autoconfigure.template.TemplateLocation; //导入依赖的package包/类
@PostConstruct
public void checkTemplateLocationExists() {
if (this.properties.isCheckTemplateLocation()) {
TemplateLocation location = new TemplateLocation(
this.properties.getResourceLoaderPath());
if (!location.exists(this.applicationContext)) {
logger.warn("Cannot find template location: " + location
+ " (please add some templates, check your Velocity "
+ "configuration, or set spring.velocity."
+ "checkTemplateLocation=false)");
}
}
}
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:14,代码来源:VelocityAutoConfiguration.java
示例5: checkTemplateLocationExists
import org.springframework.boot.autoconfigure.template.TemplateLocation; //导入依赖的package包/类
@PostConstruct
public void checkTemplateLocationExists() {
boolean checkTemplateLocation = this.properties.isCheckTemplateLocation();
if (checkTemplateLocation) {
TemplateLocation location = new TemplateLocation(this.properties.getPrefix());
if (!location.exists(this.applicationContext)) {
logger.warn("Cannot find template location: " + location
+ " (please add some templates or check "
+ "your Thymeleaf configuration)");
}
}
}
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:13,代码来源:AbstractTemplateResolverConfiguration.java
示例6: checkTemplateLocationExists
import org.springframework.boot.autoconfigure.template.TemplateLocation; //导入依赖的package包/类
@PostConstruct
public void checkTemplateLocationExists() {
if (this.mustache.isCheckTemplateLocation()) {
TemplateLocation location = new TemplateLocation(this.mustache.getPrefix());
if (!location.exists(this.applicationContext)) {
logger.warn("Cannot find template location: " + location
+ " (please add some templates, check your Mustache "
+ "configuration, or set spring.mustache."
+ "check-template-location=false)");
}
}
}
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:13,代码来源:MustacheAutoConfiguration.java
示例7: checkTemplateLocationExists
import org.springframework.boot.autoconfigure.template.TemplateLocation; //导入依赖的package包/类
@PostConstruct
public void checkTemplateLocationExists() {
boolean checkTemplateLocation = this.properties.isCheckTemplateLocation();
if (checkTemplateLocation) {
TemplateLocation location = new TemplateLocation(
this.properties.getPrefix());
if (!location.exists(this.applicationContext)) {
logger.warn("Cannot find template location: " + location
+ " (please add some templates or check "
+ "your Thymeleaf configuration)");
}
}
}
开发者ID:philwebb,项目名称:spring-boot-concourse,代码行数:14,代码来源:ThymeleafAutoConfiguration.java
示例8: checkTemplateLocationExists
import org.springframework.boot.autoconfigure.template.TemplateLocation; //导入依赖的package包/类
@PostConstruct
public void checkTemplateLocationExists() {
if (this.properties.isCheckTemplateLocation()) {
final TemplateLocation location = new TemplateLocation(this.properties.getPrefix());
if (!location.exists(this.applicationContext)) {
logger.warn("Cannot find template location: " + location
+ " (please add some templates, check your Pebble "
+ "configuration, or set spring.pebble."
+ "checkTemplateLocation=false)");
}
}
}
开发者ID:LionelWoody,项目名称:spring-boot-starter-pebble,代码行数:13,代码来源:PebbleAutoConfiguration.java
示例9: checkTemplateLocationExists
import org.springframework.boot.autoconfigure.template.TemplateLocation; //导入依赖的package包/类
@PostConstruct
protected void checkTemplateLocationExists() {
if (properties.isCheckTemplateLocation()) {
final TemplateLocation location = new TemplateLocation(properties.getPrefix());
if (!location.exists(applicationContext)) {
LOGGER.warn("Cannot find template location: " + location
+ " (please add some templates, check your Trimou "
+ "configuration, or set trimou.check-template-location=false)");
}
}
}
开发者ID:trimou,项目名称:trimou,代码行数:12,代码来源:TrimouAutoConfiguration.java
示例10: loadView
import org.springframework.boot.autoconfigure.template.TemplateLocation; //导入依赖的package包/类
@Override
protected View loadView(final String viewName, final Locale locale) throws Exception {
final View view = super.loadView(viewName, locale);
final RequestContext requestContext = RequestContextHolder.getRequestContext();
final WebApplicationService service;
final HttpServletResponse response;
final List<ArgumentExtractor> argumentExtractorList = Collections.singletonList(this.argumentExtractor);
if (requestContext != null) {
response = WebUtils.getHttpServletResponse(requestContext);
service = WebUtils.getService(argumentExtractorList, requestContext);
} else {
final HttpServletRequest request = WebUtils.getHttpServletRequestFromRequestAttributes();
service = WebUtils.getService(argumentExtractorList, request);
response = WebUtils.getHttpServletResponseFromRequestAttributes();
}
if (service == null) {
return view;
}
final RegisteredService registeredService = this.servicesManager.findServiceBy(service);
if (registeredService != null) {
try {
RegisteredServiceAccessStrategyUtils.ensureServiceAccessIsAllowed(service, registeredService);
} catch (final Exception e) {
response.setStatus(HttpStatus.UNAUTHORIZED.value());
}
}
if (registeredService != null && StringUtils.hasText(registeredService.getTheme()) && view instanceof AbstractThymeleafView) {
LOGGER.debug("Attempting to locate views for service [{}] with theme [{}]",
registeredService.getServiceId(), registeredService.getTheme());
final AbstractThymeleafView thymeleafView = (AbstractThymeleafView) view;
final String viewUrl = registeredService.getTheme() + '/' + thymeleafView.getTemplateName();
final String viewLocationUrl = prefix.concat(viewUrl).concat(suffix);
LOGGER.debug("Attempting to locate view at [{}]", viewLocationUrl);
final TemplateLocation location = new TemplateLocation(viewLocationUrl);
if (location.exists(getApplicationContext())) {
LOGGER.debug("Found view [{}]", viewUrl);
thymeleafView.setTemplateName(viewUrl);
} else {
LOGGER.debug("View [{}] does not exist. Falling back to default view at [{}]", viewLocationUrl, thymeleafView.getTemplateName());
}
}
return view;
}
开发者ID:mrluo735,项目名称:cas-5.1.0,代码行数:52,代码来源:RegisteredServiceThemeBasedViewResolver.java
示例11: checkTemplateLocationExists
import org.springframework.boot.autoconfigure.template.TemplateLocation; //导入依赖的package包/类
@PostConstruct
public void checkTemplateLocationExists() {
new TemplateLocation("classpath:/META-INF/resources/WEB-INF/templates/");
}
开发者ID:openwms,项目名称:webworms,代码行数:5,代码来源:ThymeleafConfiguration.java
注:本文中的org.springframework.boot.autoconfigure.template.TemplateLocation类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论