I writing small Tweeter like application in Play! with simple REST API using RESTEasy. I have a simple resource:
I can\'t seem to find开发者_如何学JAVA RESTEasy 2.2.0.GA in the JBoss repos. Anyone know of a repos in which I can find this version of RESTEasy?The Atlassian repository has a copy:
Is there a wa开发者_JAVA技巧y within the RESTEasy configuration (using 2.*) or jax-rs to not allow http access to any REST based web services?I want to only serve the web service end points under http
Let\'s say I have a user class which has a login, full name and last login information. There is also Post which has author, date it was created and content. Class could look something like this (plea
I have a small application written in Play! which allows user registration and adding some content for registered users which other registered users can view. I\'d like to add some REST API to my appl
I\'m having some trouble invoking a RESTful webservice using the Client Framework provided by RESTEasy. Whe开发者_C百科n I try to register the ResteasyProviderFactory I got a ClassCastException and no
I\'m using JAX-RS via RestEasy in JBoss AS 6. When my JAX-RS resource returns a collection of items (e.g. via a List), RESTEasy always uses the name collection as the root element.
I have a rest resource to which files can be uploaded. @Path(\"/rest/input\") public class InputResourceBean {
I am having trouble getting my entity beans to connect correctly to MySQL. Here\'s my set up: JBOSS: 6
I\'m playing with RESTEasy to consume REST services, and I\'m trying it out with Twitter\'s search API.