Re: Struts, Convention plugin and REST plugin

2010-07-16 Thread Kevin Jones
27;t work, Kevin On 16 July 2010 09:54, Frans Thamura wrote: > Just curious > > Is there a production using rest plugibs > (m) > > -Original Message- > From: Johannes Geppert > Date: Fri, 16 Jul 2010 01:31:30 > To: > Reply-To: "Struts Users Mailing

Re: Struts, Convention plugin and REST plugin

2010-07-16 Thread Frans Thamura
Just curious Is there a production using rest plugibs (m) -Original Message- From: Johannes Geppert Date: Fri, 16 Jul 2010 01:31:30 To: Reply-To: "Struts Users Mailing List" Subject: Re: Struts, Convention plugin and REST plugin did it work when you don't use the act

Re: Struts, Convention plugin and REST plugin

2010-07-16 Thread Johannes Geppert
did it work when you don't use the action annotations ? Because with Rest Plugin you have already an action called "posts" Try it only with the Results annotations. @Results( { @Result(name="newpost", location="newpost"), @Result(name="posts", location="posts") }) public class PostsController

Struts, Convention plugin and REST plugin

2010-07-15 Thread Kevin Jones
I'm having a problem using Struts/Convention/REST together/ I have a class that looks like this public class PostsController implements Preparable, ModelDriven> { } with two 'action' methods @Action(result...@result(name="newpost", location="newpost")}) public String editNew() {