* Post process handler interceptors.
* @param context
*/
protected void configureHandlerInterceptor(ApplicationContext context) {
if (context.containsBean(HANDLER_INTERCEPTOR_BEAN_NAME)) {
DelegatingHandlerInterceptor handlerInterceptor = context.getBean(HANDLER_INTERCEPTOR_BEAN_NAME, DelegatingHandlerInterceptor.class);
handlerInterceptor.setInterceptors(adaptInterceptors(httpServer.getInterceptors()));
}
}