Развертывание обработчика HTTP и Resteasy с undertow и resteasy

Я пытаюсь запустить как HTTPServer, так и обработчик REST. Только один работает за один раз, но не может заставить его работать одновременно. Мне нужно обслуживать HTML-страницы, а также API.

вот мой код

    public class HttpServer {

    private final UndertowJaxrsServer server = new UndertowJaxrsServer();
    private static String rootPath = System.getProperty("user.dir");

    private final Undertow.Builder serverBuilder;

    public HttpServer(Integer port, String host) {
        serverBuilder = Undertow
                .builder()
                .addHttpListener(port, host)
                .setHandler(
                        Handlers.path().addPrefixPath(
                                "/",
                                Handlers.resource(
                                        new FileResourceManager(new File(
                                                rootPath + "/web"), 100))
                                        .addWelcomeFiles(
                                                rootPath + "/web/index.html")));
        server.start(serverBuilder);
    }

    public DeploymentInfo deployApplication(String appPath,
            Class<? extends Application> applicationClass) {
        ResteasyDeployment deployment = new ResteasyDeployment();
        deployment.setApplicationClass(applicationClass.getName());
        return server.undertowDeployment(deployment, appPath);
    }

    public void deploy(DeploymentInfo deploymentInfo) throws ServletException {
        server.deploy(deploymentInfo);
    }

    public static void main(String[] args) throws ServletException {
        HttpServer myServer = new HttpServer(8080, "0.0.0.0");

        DeploymentInfo di = myServer
                .deployApplication("/rest", MyApplication.class)
                .setClassLoader(HttpServer.class.getClassLoader())
                .setContextPath("/my").setDeploymentName("My Application");
        myServer.deploy(di);
    }
}

2 ответа

Решение

UndertowJaxrsServer переопределяет обработчик файлов вашего компоновщика:

public UndertowJaxrsServer start(Undertow.Builder builder)
{
    server = builder.setHandler(root).build();
    server.start();
    return this;
}

Похоже, что нет способа передать другой обработчик в UndertowJaxrsServer. Возможные обходные пути могут быть:

  • Разверните другое приложение с одним классом ресурсов, который просто обслуживает файлы.
  • Используйте бланк Undertow и не беспокойтесь о простом развертывании JAX-RS.

С версии 3.1.0.Beta2 и выше вы можете попробовать это

UndertowJaxrsServer server = new UndertowJaxrsServer();

ResteasyDeployment deployment = new ResteasyDeployment();

deployment.setApplicationClass(ExampleApplication.class.getName());

DeploymentInfo deploymentInfo = server.undertowDeployment(deployment, "/");
deploymentInfo.setClassLoader(MyServer.class.getClassLoader());

deploymentInfo.setContextPath("/api");

server.deploy(deploymentInfo);

server.addResourcePrefixPath("/",
        resource(new PathResourceManager(Paths.get(STATIC_PATH),100)).
            addWelcomeFiles("index.html"));

server.start();

Приложение RestEasy будет доступно в /api/*, а статические файлы в / *

Другие вопросы по тегам