本文整理汇总了Java中org.springframework.boot.autoconfigure.web.ErrorViewResolver类的典型用法代码示例。如果您正苦于以下问题:Java ErrorViewResolver类的具体用法?Java ErrorViewResolver怎么用?Java ErrorViewResolver使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ErrorViewResolver类属于org.springframework.boot.autoconfigure.web包,在下文中一共展示了ErrorViewResolver类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: pac4jErrorViewResolver
import org.springframework.boot.autoconfigure.web.ErrorViewResolver; //导入依赖的package包/类
@Bean
public ErrorViewResolver pac4jErrorViewResolver() {
return new Pac4jErrorViewResolver();
}
开发者ID:mrluo735,项目名称:cas-5.1.0,代码行数:5,代码来源:Pac4jWebflowConfiguration.java
示例2: CrnkErrorController
import org.springframework.boot.autoconfigure.web.ErrorViewResolver; //导入依赖的package包/类
public CrnkErrorController(ErrorAttributes errorAttributes,
ErrorProperties errorProperties,
List<ErrorViewResolver> errorViewResolvers) {
super(errorAttributes, errorProperties, errorViewResolvers);
}
开发者ID:crnk-project,项目名称:crnk-framework,代码行数:6,代码来源:CrnkErrorController.java
示例3: CrnkErrorControllerAutoConfiguration
import org.springframework.boot.autoconfigure.web.ErrorViewResolver; //导入依赖的package包/类
public CrnkErrorControllerAutoConfiguration(ServerProperties serverProperties,
ObjectProvider<List<ErrorViewResolver>> errorViewResolversProvider) {
this.serverProperties = serverProperties;
this.errorViewResolvers = errorViewResolversProvider.getIfAvailable();
}
开发者ID:crnk-project,项目名称:crnk-framework,代码行数:6,代码来源:CrnkErrorControllerAutoConfiguration.java
示例4: CustomErrorControllerConfiguration
import org.springframework.boot.autoconfigure.web.ErrorViewResolver; //导入依赖的package包/类
public CustomErrorControllerConfiguration(ServerProperties serverProperties,
ObjectProvider<List<ErrorViewResolver>> errorViewResolversProvider) {
this.serverProperties = serverProperties;
this.errorViewResolvers = errorViewResolversProvider.getIfAvailable();
}
开发者ID:chanjarster,项目名称:spring-mvc-error-handling-example,代码行数:6,代码来源:CustomErrorControllerConfiguration.java
示例5: CustomErrorController
import org.springframework.boot.autoconfigure.web.ErrorViewResolver; //导入依赖的package包/类
public CustomErrorController(ErrorAttributes errorAttributes,
ErrorProperties errorProperties,
List<ErrorViewResolver> errorViewResolvers) {
super(errorAttributes, errorProperties, errorViewResolvers);
}
开发者ID:chanjarster,项目名称:spring-mvc-error-handling-example,代码行数:6,代码来源:CustomErrorController.java
示例6: supportPathBasedLocationStrategyWithoutHashes
import org.springframework.boot.autoconfigure.web.ErrorViewResolver; //导入依赖的package包/类
@Bean
public ErrorViewResolver supportPathBasedLocationStrategyWithoutHashes() {
return (HttpServletRequest req, HttpStatus status, Map<String, Object> model) -> status == HttpStatus.NOT_FOUND
? new ModelAndView("index.html", Collections.emptyMap(), HttpStatus.OK)
: null;
}
开发者ID:christophd,项目名称:citrus-admin,代码行数:7,代码来源:WebConfig.java
示例7: errorViewResolver
import org.springframework.boot.autoconfigure.web.ErrorViewResolver; //导入依赖的package包/类
@Bean
public ErrorViewResolver errorViewResolver() {
return new MyErrorViewResolver();
}
开发者ID:puncha,项目名称:petclinic,代码行数:5,代码来源:WebConfig.java
示例8: DataResultErrorController
import org.springframework.boot.autoconfigure.web.ErrorViewResolver; //导入依赖的package包/类
public DataResultErrorController(ErrorAttributes errorAttributes,
ErrorProperties errorProperties,
List<ErrorViewResolver> errorViewResolvers) {
super(errorAttributes, errorProperties, errorViewResolvers);
}
开发者ID:wayshall,项目名称:onetwo,代码行数:6,代码来源:DataResultErrorController.java
示例9: supportPathBasedLocationStrategyWithoutHashes
import org.springframework.boot.autoconfigure.web.ErrorViewResolver; //导入依赖的package包/类
@Bean
ErrorViewResolver supportPathBasedLocationStrategyWithoutHashes() {
return (request, status, model) -> status == HttpStatus.NOT_FOUND
? new ModelAndView("index.html", Collections.emptyMap(), HttpStatus.OK)
: null;
}
开发者ID:crispab,项目名称:codekvast,代码行数:7,代码来源:Html5ModeConfig.java
注:本文中的org.springframework.boot.autoconfigure.web.ErrorViewResolver类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论