Created
September 4, 2012 15:00
-
-
Save kmtr/3621991 to your computer and use it in GitHub Desktop.
JavaEE6 Jetty CDI(Weld) JAX-RS(jersey)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<beans xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/beans_1_0.xsd"> | |
</beans> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd"> | |
<Configure class="org.eclipse.jetty.webapp.WebAppContext"> | |
<Set name="serverClasses"> | |
<Array type="java.lang.String"> | |
<Item> | |
-org.eclipse.jetty.servlet.ServletContextHandler.Decorator | |
</Item> | |
</Array> | |
</Set> | |
</Configure> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" | |
"http://jetty.mortbay.org/configure.dtd"> | |
<Configure id="webAppCtx" class="org.eclipse.jetty.webapp.WebAppContext"> | |
<New id="BeanManager" class="org.eclipse.jetty.plus.jndi.Resource"> | |
<Arg> | |
<Ref id="webAppCtx" /> | |
</Arg> | |
<Arg>BeanManager</Arg> | |
<Arg> | |
<New class="javax.naming.Reference"> | |
<Arg>javax.enterprise.inject.spi.BeanManager</Arg> | |
<Arg>org.jboss.weld.resources.ManagerObjectFactory</Arg> | |
<Arg /> | |
</New> | |
</Arg> | |
</New> | |
</Configure> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.example</groupId> | |
<artifactId>myapp</artifactId> | |
<packaging>war</packaging> | |
<version>0.0.1-SNAPSHOT</version> | |
<properties> | |
<jetty-version>8.1.5.v20120716</jetty-version> | |
<weld-version>1.1.8.Final</weld-version> | |
<jersey-version>1.13</jersey-version> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
</properties> | |
<dependencies> | |
<!-- javaee6 --> | |
<dependency> | |
<groupId>javax</groupId> | |
<artifactId>javaee-web-api</artifactId> | |
<version>6.0</version> | |
<scope>provided</scope> | |
</dependency> | |
<!-- weld --> | |
<dependency> | |
<groupId>org.jboss.weld.servlet</groupId> | |
<artifactId>weld-servlet</artifactId> | |
<version>${weld-version}</version> | |
</dependency> | |
<!-- jersey --> | |
<dependency> | |
<groupId>com.sun.jersey</groupId> | |
<artifactId>jersey-core</artifactId> | |
<version>${jersey-version}</version> | |
</dependency> | |
<dependency> | |
<groupId>com.sun.jersey</groupId> | |
<artifactId>jersey-servlet</artifactId> | |
<version>${jersey-version}</version> | |
</dependency> | |
<dependency> | |
<groupId>com.sun.jersey</groupId> | |
<artifactId>jersey-json</artifactId> | |
<version>${jersey-version}</version> | |
</dependency> | |
<!-- test --> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>4.8.2</version> | |
<scope>test</scope> | |
</dependency> | |
</dependencies> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.mortbay.jetty</groupId> | |
<artifactId>jetty-maven-plugin</artifactId> | |
<version>${jetty-version}</version> | |
<configuration> | |
<scanIntervalSeconds>10</scanIntervalSeconds> | |
<webAppConfig> | |
<contextPath>/</contextPath> | |
</webAppConfig> | |
<contextXml>src/main/webapp/WEB-INF/jetty-context.xml</contextXml> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<configuration> | |
<source>1.6</source> | |
<target>1.6</target> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"> | |
<display-name>webapp</display-name> | |
<filter> | |
<filter-name>jersey</filter-name> | |
<filter-class>com.sun.jersey.spi.container.servlet.ServletContainer</filter-class> | |
<init-param> | |
<param-name>com.sun.jersey.config.property.WebPageContentRegex</param-name> | |
<param-value>/(images|js|styles)/.*</param-value> | |
</init-param> | |
<init-param> | |
<param-name>com.sun.jersey.config.property.JSPTemplatesBasePath</param-name> | |
<param-value>/WEB-INF/template</param-value> | |
</init-param> | |
</filter> | |
<filter-mapping> | |
<filter-name>jersey</filter-name> | |
<url-pattern>/*</url-pattern> | |
</filter-mapping> | |
<!-- Weld Jetty Configuration parameters --> | |
<listener> | |
<listener-class>org.jboss.weld.environment.servlet.Listener</listener-class> | |
</listener> | |
<resource-env-ref> | |
<resource-env-ref-name>BeanManager</resource-env-ref-name> | |
<resource-env-ref-type>javax.enterprise.inject.spi.BeanManager</resource-env-ref-type> | |
</resource-env-ref> | |
</web-app> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment