Questions tagged [apache-wink-spring]

4 questions
6
votes
1 answer

REST service not being registered in Apache wink with Spring and Maven

I have a Maven project with the dependencies listed below: wink.version = 1.1.3-incubating and spring.version = 3.0.5.RELEASE Application Context in Spring includes:
German Attanasio
  • 22,217
  • 7
  • 47
  • 63
1
vote
1 answer

Integrating Wink and Spring in Tomcat

I am attempting to access a Wink Resource that should be deployed in tomcat. The Resource code is @Path("/lookup") public class LookupResource { private static final Logger logger = LoggerFactory.getLogger(LookupResource.class); private…
1
vote
1 answer

Wink : how to use spring life cycle management?

I have a Wink application with some resources, on which I'd like to make some dependency injection of Spring beans. I defined my resource as bean following the example located here http://wink.apache.org/1.0/html/5.5%20Spring%20Integration.html, and…
0
votes
1 answer

Use Spring module without using Spring and Maven?

I'm currently working on a project that involves building a REST api using JavaEE. The setup of the project is Tomcat, Hibernate, Wink and Jackson Json for the different json-views. At the moment the unit testing of the rest resources is very poor,…
user1120144