- undertowDeployment(ResteasyDeployment, String) - Method in class org.jboss.resteasy.plugins.server.undertow.UndertowJaxrsServer
-
Creates a web deployment for your ResteasyDeployent so you can set up things like security constraints
You'd call this method, add your servlet security constraints, then call deploy(DeploymentInfo)
Note, only one ResteasyDeployment can be applied per DeploymentInfo
ResteasyServlet is mapped to mapping + "/*"
Example:
DeploymentInfo di = server.undertowDeployment(resteasyDeployment, "rest");
di.setDeploymentName("MyDeployment")
di.setContextRoot("root");
server.deploy(di);
- undertowDeployment(ResteasyDeployment) - Method in class org.jboss.resteasy.plugins.server.undertow.UndertowJaxrsServer
-
Creates a web deployment for your ResteasyDeployent so you can set up things like security constraints
You'd call this method, add your servlet security constraints, then call deploy(DeploymentInfo)
Note, only one ResteasyDeployment can be applied per DeploymentInfo.
- undertowDeployment(Class<? extends Application>, String) - Method in class org.jboss.resteasy.plugins.server.undertow.UndertowJaxrsServer
-
Creates a web deployment for the jaxrs Application.
- undertowDeployment(Class<? extends Application>) - Method in class org.jboss.resteasy.plugins.server.undertow.UndertowJaxrsServer
-
Creates a web deployment for the jaxrs Application.
- UndertowJaxrsServer - Class in org.jboss.resteasy.plugins.server.undertow
-
Wrapper around Undertow to make resteasy deployments easier
Each ResteasyDeployment or jaxrs Application is deployed under its own web deployment (WAR)
You may also deploy after the server has started.
- UndertowJaxrsServer() - Constructor for class org.jboss.resteasy.plugins.server.undertow.UndertowJaxrsServer
-