i start oracle weblogic server 12c r2 (12.2.1) on eclipse, can synchronized, has issues below. have added jersey library 1.17, not sure if old version. find correct download link latest.
一月 24, 2016 11:20:39 上午 weblogic.wsee.runtime.jmsstoreroutableidmapper onfailure info: destination failure weblogic.wsee.bufferedrequestqueue due exception: while trying lookup 'weblogic.wsee.bufferedrequestqueue' didn't find subcontext 'wsee'. resolved 'weblogic' 一月 24, 2016 11:20:39 上午 weblogic.wsee.runtime.jmsstoreroutableidmapper onfailure info: destination failure weblogic.wsee.bufferedresponsequeue due exception: while trying lookup 'weblogic.wsee.bufferedresponsequeue' didn't find subcontext 'wsee'. resolved 'weblogic' <jan 24, 2016 11:21:15 est> <warning> <jaxrsintegration> <bea-2192509> <changing servlet class com.sun.jersey.spi.container.servlet.servletcontainer (web.xml) org.glassfish.jersey.servlet.servletcontainer.> <jan 24, 2016 11:21:15 est> <warning> <jaxrsintegration> <bea-2192510> <cannot add jersey servlet application class com.sun.jersey.api.core.resourceconfig because applicationpath annotation not set on it.> <jan 24, 2016 11:21:15 est> <warning> <jaxrsintegration> <bea-2192510> <cannot add jersey servlet application class com.sun.jersey.api.core.applicationadapter because applicationpath annotation not set on it.> <jan 24, 2016 11:21:15 est> <warning> <jaxrsintegration> <bea-2192510> <cannot add jersey servlet application class com.sun.jersey.server.impl.application.deferredresourceconfig because applicationpath annotation not set on it.> <jan 24, 2016 11:21:15 est> <warning> <jaxrsintegration> <bea-2192510> <cannot add jersey servlet application class com.sun.jersey.api.core.classnamesresourceconfig because applicationpath annotation not set on it.> <jan 24, 2016 11:21:15 est> <warning> <jaxrsintegration> <bea-2192510> <cannot add jersey servlet application class com.sun.jersey.api.core.defaultresourceconfig because applicationpath annotation not set on it.> <jan 24, 2016 11:21:15 est> <warning> <jaxrsintegration> <bea-2192510> <cannot add jersey servlet application class com.sun.jersey.api.core.packagesresourceconfig because applicationpath annotation not set on it.> <jan 24, 2016 11:21:15 est> <warning> <jaxrsintegration> <bea-2192510> <cannot add jersey servlet application class com.sun.jersey.api.core.servlet.webappresourceconfig because applicationpath annotation not set on it.> <jan 24, 2016 11:21:15 est> <warning> <jaxrsintegration> <bea-2192510> <cannot add jersey servlet application class com.sun.jersey.api.core.classpathresourceconfig because applicationpath annotation not set on it.> <jan 24, 2016 11:21:15 est> <warning> <jaxrsintegration> <bea-2192510> <cannot add jersey servlet application class com.sun.jersey.api.core.scanningresourceconfig because applicationpath annotation not set on it.> <jan 24, 2016 11:21:15 est> <warning> <jaxrsintegration> <bea-2192511> <the list of resource packages: org.codehaus.jackson.jaxrs;com.sun.jersey.server.impl.application>
could figure out how fix this?
web.xml is:
<?xml version="1.0" encoding="utf-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemalocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="webapp_id" version="3.1"> <display-name>com.youtube.rest</display-name> <welcome-file-list> <welcome-file>readme.html</welcome-file> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> <welcome-file>default.jsp</welcome-file> </welcome-file-list> <servlet> <servlet-name>jersey rest service</servlet-name> <servlet-class>com.sun.jersey.spi.container.servlet.servletcontainer</servlet-class> <init-param> <param-name>com.sun.jersey.config.property.packages</param-name> <param-value>com.youtube.rest</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>jersey rest service</servlet-name> <url-pattern>/api/*</url-pattern> </servlet-mapping> </web-app> readme.html <!doctype html> <html> <head> <meta charset="utf-8"> <title>insert title here</title> </head> <body> <h1>read me</h1> </body> </html>
change jersey version 2.x
Comments
Post a Comment