
io.fabric8.quickstarts.cxfcdi.ApplicationStarter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-cxf-cdi Show documentation
Show all versions of java-cxf-cdi Show documentation
CXF JAX-RS using CDI running in a standalone Java Container
The newest version!
/**
* Copyright 2005-2014 Red Hat, Inc.
*
* Red Hat licenses this file to you under the Apache License, version
* 2.0 (the "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
* implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package io.fabric8.quickstarts.cxfcdi;
import java.util.Map;
import org.apache.cxf.cdi.CXFCdiServlet;
import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.servlet.ServletContextHandler;
import org.eclipse.jetty.servlet.ServletHolder;
import org.jboss.weld.environment.servlet.BeanManagerResourceBindingListener;
import org.jboss.weld.environment.servlet.Listener;
public class ApplicationStarter {
public static void main(final String[] args) throws Exception {
startServer().join();
}
public static Server startServer() throws Exception {
// use system property first
String port = System.getProperty("HTTP_PORT");
if (port == null) {
// and fallback to use environment variable
port = System.getenv("HTTP_PORT");
}
if (port == null) {
// and use port 8586 by default
port = "8586";
}
Integer num = Integer.parseInt(port);
String service = System.getProperty("SERVICE");
if (service == null) {
// and fallback to use environment variable
service = System.getenv("SERVICE");
}
if (service == null) {
// and use 'java-cxf-cdi' by default
service = "java-cxf-cdi";
}
System.out.println("Starting REST server at http://localhost:" + port + "/" + service + "/");
Map env = System.getenv();
for (String envName : env.keySet()) {
System.out.format("%s=%s%n", envName, env.get(envName));
}
final Server server = new Server(num);
// Register and map the dispatcher servlet
final ServletHolder servletHolder = new ServletHolder(new CXFCdiServlet());
// change default service list URI
servletHolder.setInitParameter("service-list-path", "/cxf/servicesList");
final ServletContextHandler context = new ServletContextHandler();
context.setContextPath("/");
context.addEventListener(new Listener());
context.addEventListener(new BeanManagerResourceBindingListener());
context.addServlet(servletHolder, "/" + service + "/*");
server.setHandler(context);
server.start();
return server;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy