本文整理匯總了Java中org.springframework.boot.web.servlet.error.ErrorAttributes類的典型用法代碼示例。如果您正苦於以下問題:Java ErrorAttributes類的具體用法?Java ErrorAttributes怎麽用?Java ErrorAttributes使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
ErrorAttributes類屬於org.springframework.boot.web.servlet.error包,在下文中一共展示了ErrorAttributes類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: testErrorController
import org.springframework.boot.web.servlet.error.ErrorAttributes; //導入依賴的package包/類
@Bean
TestErrorController testErrorController(ErrorAttributes errorAttributes, Tracer tracer) {
return new TestErrorController(errorAttributes, tracer);
}
示例2: TestErrorController
import org.springframework.boot.web.servlet.error.ErrorAttributes; //導入依賴的package包/類
public TestErrorController(ErrorAttributes errorAttributes, Tracer tracer) {
super(errorAttributes, new ServerProperties().getError());
this.tracer = tracer;
}
示例3: myErrorController
import org.springframework.boot.web.servlet.error.ErrorAttributes; //導入依賴的package包/類
@Bean
public MyErrorController myErrorController(ErrorAttributes errorAttributes) {
return new MyErrorController(errorAttributes);
}
示例4: myErrorController
import org.springframework.boot.web.servlet.error.ErrorAttributes; //導入依賴的package包/類
@Bean
public ZuulProxyTestBase.MyErrorController myErrorController(
ErrorAttributes errorAttributes) {
return new ZuulProxyTestBase.MyErrorController(errorAttributes);
}
開發者ID:spring-cloud,項目名稱:spring-cloud-netflix,代碼行數:6,代碼來源:HttpClientRibbonCommandIntegrationTests.java
示例5: MyErrorController
import org.springframework.boot.web.servlet.error.ErrorAttributes; //導入依賴的package包/類
public MyErrorController(ErrorAttributes errorAttributes) {
super(errorAttributes, new ErrorProperties());
}