本文最后更新于 908 天前,其中的信息可能已经有所发展或是发生改变。
1.介绍
- @Configuration启动容器
- @Bean注册Bean
- 缺点:无法注入异常信息到页面
2.实现
代码语言:javascript复制@Configuration
public class GlobalException1 {
@Bean
public SimpleMappingExceptionResolver getSimpleMappingExceptionResolver(){
SimpleMappingExceptionResolver mappings=new SimpleMappingExceptionResolver();
Properties pro=new Properties();
pro.put("java.lang.ArithmeticException", "ArithmeticExceptionPage");
pro.put("java.lang.NullPointerException", "NullPointerExceptionPage");
mappings.setExceptionMappings(pro);
return mappings;
}
Post Views: 337