Package org.apache.marmotta.platform.core.services.jaxrs

Examples of org.apache.marmotta.platform.core.services.jaxrs.ExceptionMapperServiceImpl


        } catch (Exception e) {
            log.error("could not start up embedded jetty server", e);
        }

        // make sure exception mappers are loaded and registered
        ExceptionMapperServiceImpl mapperService = CDIContext.getInstance(ExceptionMapperServiceImpl.class);
        try {
            mapperService.register(((HttpServletDispatcher) restEasyFilter.getServlet()).getDispatcher().getProviderFactory());
        } catch (ServletException e) {
            log.warn("could not register exception mappers");
        }

        // make sure interceptors are loaded and registered
View Full Code Here

TOP

Related Classes of org.apache.marmotta.platform.core.services.jaxrs.ExceptionMapperServiceImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.