org.springframework.boot.autoconfigure.web.DefaultErrorAttributes Java Examples
The following examples show how to use
org.springframework.boot.autoconfigure.web.DefaultErrorAttributes.
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: SearchBoxConfiguration.java From searchbox-core with Apache License 2.0 | 5 votes |
@Bean public ErrorAttributes customizeErrorResponseAttributes() { return new DefaultErrorAttributes(){ @Override public Map<String, Object> getErrorAttributes(RequestAttributes requestAttributes, boolean includeStackTrace) { Map<String, Object> errorAttributes = super.getErrorAttributes(requestAttributes, includeStackTrace); errorAttributes.remove("timestamp"); errorAttributes.remove("exception"); return errorAttributes; } }; }
Example #2
Source File: DefaultStandaloneControllerConfig.java From spring-boot-practice with Apache License 2.0 | 4 votes |
@Bean ErrorAttributes errorAttributes() { return new DefaultErrorAttributes(); }