Git Product home page Git Product logo

Comments (4)

bbejeck avatar bbejeck commented on August 16, 2024

Thanks for reporting, looking into this.

from kafka-streams-examples.

mjsax avatar mjsax commented on August 16, 2024

Sound like a dependency issue, ie, some dependent lib might be pulled in with wrong version?

from kafka-streams-examples.

bhagyashri10 avatar bhagyashri10 commented on August 16, 2024

I have use the following JARS:

jersey-bean-validation-2.19.jar
jersey-bundle-1.9.jar
jersey-client-2.19.jar
jersey-common-2.19.jar
jersey-container-jetty-http-2.19.jar
jersey-container-servlet-2.19.jar
jersey-container-servlet-core-2.19.jar
jersey-entity-filtering-2.19.jar
jersey-guava-2.19.jar
jersey-media-jaxb-2.19.jar
jersey-media-json-jackson-2.19.jar
jersey-media-multipart-2.13.jar
jersey-server-2.19.jar
jersey-test-framework-core-2.19.jar
jersey-test-framework-provider-jetty-2.19.jar

jetty-continuation-9.2.12.v20150709.jar
jetty-http-9.2.12.v20150709.jar
jetty-io-9.2.12.v20150709.jar
jetty-security-9.2.12.v20150709.jar
jetty-server-9.2.12.v20150709.jar
jetty-servlet-9.2.12.v20150709.jar
jetty-servlets-9.2.12.v20150709.jar
jetty-util-9.2.12.v20150709.jar

javax.annotation-api-1.2.jar
javax.el-2.2.4.jar
javax.el-api-2.2.4.jar
javax.inject-2.4.0-b25.jar
javax.servlet-api-3.1.0.jar
javax.ws.rs-api-2.0.1.jar

from kafka-streams-examples.

bhagyashri10 avatar bhagyashri10 commented on August 16, 2024

Problem solved by removing jersey-bundle-1.9.jar and add following code in web.xml file.

<servlet>
	<servlet-name>Jersey REST Service</servlet-name>
	<servlet-class>
	  	org.glassfish.jersey.servlet.ServletContainer
	</servlet-class>
	<init-param>
	    <param-name>jersey.config.server.provider.packages</param-name>
	    <param-value>sample.hello.resources</param-value>
	</init-param>
	<load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
	  <servlet-name>Jersey REST Service</servlet-name>
	  <url-pattern>/*</url-pattern>
  </servlet-mapping>

from kafka-streams-examples.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.