Author Login
Post Reply
user Digest 29 Jul 2010 15:47:23 -0000 Issue 9135
Topics (messages 207082 through 207094):
Parse url parameter
207082 by: Franz Wong
207083 by: Dale Newfield
Re: Reading input stream (xml)
207084 by: Rahul Mohan
207085 by: Arun Kumar Boppudi
207086 by: Rahul Mohan
207088 by: Arun Kumar Boppudi
207089 by: Rahul Mohan
207090 by: Arun Kumar Boppudi
207092 by: Rahul Mohan
How to check if a error for a certain property exists inside action errors.
207087 by: Vishnu Vyasan Nelliparmbil
struts2 modeldriven how ot modify the model object?
207091 by: roievil
Struts2-Spring-Hibernate with REST
207093 by: Frans Thamura
Spring 2.5.6 -> 3.0
207094 by: Frans Thamura
Administrivia:
---------------------------------------------------------------------
To post to the list, e-mail: user@(protected)
To unsubscribe, e-mail: user-digest-unsubscribe@(protected)
For additional commands, e-mail: user-digest-help@(protected)
----------------------------------------------------------------------

Attachment:
user_207082.ezm (zipped)Hi group,
Suppose I have an URL with parameters (e.g.
http://localhost:8080/myApp/action/myAction/user/name/Peter).
I would like to map those parameters in the following way.
class MyAction {
private String searchType; // user
private String searchMethod; // name
private String searchData // Peter
}
Is there any Action class can parse the parameters into properties of
Action?
Thanks
Franz

Attachment:
user_207083.ezm (zipped)On 7/29/10 12:02 AM, Franz Wong wrote:
> http://localhost:8080/myApp/action/myAction/user/name/Peter).
>
> I would like to map those parameters in the following way.
>
> class MyAction {
> private String searchType; // user
> private String searchMethod; // name
> private String searchData // Peter
> }
>
> Is there any Action class can parse the parameters into properties of
> Action?
<action name="/action/myAction/*/*/*" class="path.to.MyAction">
<param name="searchType">{1}</param>
<param name="searchMethod">{2}</param>
<param name="searchData">{3}</param>
<result of some form />
</action>
I think there's some flag to throw to allow slashes in action names...
Or as was suggested earlier today: URLRewrite
-Dale

Attachment:
user_207084.ezm (zipped)Doesn't this link (http://struts.apache.org/2.0.14/docs/file-upload.html)
help you?
From:
Arun Kumar Boppudi <arunkumar.boppudi@(protected)>
To:
Struts Users Mailing List <user@(protected)>
Date:
28-07-2010 22:09
Subject:
Reading input stream (xml)
If we send XML content in the POST/PUT request to Struts action
controller,
how to read this content in the Action class?
-- AB
=====-----=====-----=====
Notice: The information contained in this e-mail
message and/or attachments to it may contain
confidential or privileged information. If you are
not the intended recipient, any dissemination, use,
review, distribution, printing or copying of the
information contained in this e-mail message
and/or attachments to it are strictly prohibited. If
you have received this communication in error,
please notify us by reply e-mail or telephone and
immediately and permanently delete the message
and any attachments. Thank you

Attachment:
user_207085.ezm (zipped)Actually, I am not uploading a file. I am creating XML from the data entered
into the form and sending it to the action controller in the POST request
body. In the action controller, I would like to parse the XML. How to do it
in Struts 1.3?
-- Arun Kumar Boppudi
On Thu, Jul 29, 2010 at 10:24 AM, Rahul Mohan <rahul.mohan@(protected):
> Doesn't this link (http://struts.apache.org/2.0.14/docs/file-upload.html)
> help you?
>
>
>
> From:
> Arun Kumar Boppudi <arunkumar.boppudi@(protected)>
> To:
> Struts Users Mailing List <user@(protected)>
> Date:
> 28-07-2010 22:09
> Subject:
> Reading input stream (xml)
>
>
>
> If we send XML content in the POST/PUT request to Struts action
> controller,
> how to read this content in the Action class?
>
> -- AB
>
>
> =====-----=====-----=====
> Notice: The information contained in this e-mail
> message and/or attachments to it may contain
> confidential or privileged information. If you are
> not the intended recipient, any dissemination, use,
> review, distribution, printing or copying of the
> information contained in this e-mail message
> and/or attachments to it are strictly prohibited. If
> you have received this communication in error,
> please notify us by reply e-mail or telephone and
> immediately and permanently delete the message
> and any attachments. Thank you
>
>
>

Attachment:
user_207086.ezm (zipped)Arun,
You can keep a string property on action form and map it to the xml field
so that the xml content is available here on page submit. In the action
class, then you will be able to get the string and parse it using any
available xml parser. I don't think Struts provides any shortcut for this
requirement.
- Rahul Mohan
From:
Arun Kumar Boppudi <arunkumar.boppudi@(protected)>
To:
Struts Users Mailing List <user@(protected)>
Date:
29-07-2010 10:32
Subject:
Re: Reading input stream (xml)
Actually, I am not uploading a file. I am creating XML from the data
entered
into the form and sending it to the action controller in the POST request
body. In the action controller, I would like to parse the XML. How to do
it
in Struts 1.3?
-- Arun Kumar Boppudi
On Thu, Jul 29, 2010 at 10:24 AM, Rahul Mohan <rahul.mohan@(protected):
> Doesn't this link (http://struts.apache.org/2.0.14/docs/file-upload.html
)
> help you?
>
>
>
> From:
> Arun Kumar Boppudi <arunkumar.boppudi@(protected)>
> To:
> Struts Users Mailing List <user@(protected)>
> Date:
> 28-07-2010 22:09
> Subject:
> Reading input stream (xml)
>
>
>
> If we send XML content in the POST/PUT request to Struts action
> controller,
> how to read this content in the Action class?
>
> -- AB
>
>
> =====-----=====-----=====
> Notice: The information contained in this e-mail
> message and/or attachments to it may contain
> confidential or privileged information. If you are
> not the intended recipient, any dissemination, use,
> review, distribution, printing or copying of the
> information contained in this e-mail message
> and/or attachments to it are strictly prohibited. If
> you have received this communication in error,
> please notify us by reply e-mail or telephone and
> immediately and permanently delete the message
> and any attachments. Thank you
>
>
>
=====-----=====-----=====
Notice: The information contained in this e-mail
message and/or attachments to it may contain
confidential or privileged information. If you are
not the intended recipient, any dissemination, use,
review, distribution, printing or copying of the
information contained in this e-mail message
and/or attachments to it are strictly prohibited. If
you have received this communication in error,
please notify us by reply e-mail or telephone and
immediately and permanently delete the message
and any attachments. Thank you

Attachment:
user_207088.ezm (zipped)Rahul,
I am not sending XML content as part of the query string, only XML content
will be sent in the request body. As struts framework uses the getParameter
to populate data into the form beans before calling the execute method, we
cannot use the request.getInputStream.
http://archives.java.sun.com/cgi-bin/wa?A2=ind0106&L=jsp-interest&F=&S=&P=49196
-- AB
On Thu, Jul 29, 2010 at 11:01 AM, Rahul Mohan <rahul.mohan@(protected):
> Arun,
>
> You can keep a string property on action form and map it to the xml field
> so that the xml content is available here on page submit. In the action
> class, then you will be able to get the string and parse it using any
> available xml parser. I don't think Struts provides any shortcut for this
> requirement.
>
> - Rahul Mohan
>
>
>
> From:
> Arun Kumar Boppudi <arunkumar.boppudi@(protected)>
> To:
> Struts Users Mailing List <user@(protected)>
> Date:
> 29-07-2010 10:32
> Subject:
> Re: Reading input stream (xml)
>
>
>
> Actually, I am not uploading a file. I am creating XML from the data
> entered
> into the form and sending it to the action controller in the POST request
> body. In the action controller, I would like to parse the XML. How to do
> it
> in Struts 1.3?
>
> -- Arun Kumar Boppudi
>
>
> On Thu, Jul 29, 2010 at 10:24 AM, Rahul Mohan <rahul.mohan@(protected):
>
> > Doesn't this link (http://struts.apache.org/2.0.14/docs/file-upload.html
> )
> > help you?
> >
> >
> >
> > From:
> > Arun Kumar Boppudi <arunkumar.boppudi@(protected)>
> > To:
> > Struts Users Mailing List <user@(protected)>
> > Date:
> > 28-07-2010 22:09
> > Subject:
> > Reading input stream (xml)
> >
> >
> >
> > If we send XML content in the POST/PUT request to Struts action
> > controller,
> > how to read this content in the Action class?
> >
> > -- AB
> >
> >
> > =====-----=====-----=====
> > Notice: The information contained in this e-mail
> > message and/or attachments to it may contain
> > confidential or privileged information. If you are
> > not the intended recipient, any dissemination, use,
> > review, distribution, printing or copying of the
> > information contained in this e-mail message
> > and/or attachments to it are strictly prohibited. If
> > you have received this communication in error,
> > please notify us by reply e-mail or telephone and
> > immediately and permanently delete the message
> > and any attachments. Thank you
> >
> >
> >
>
>
> =====-----=====-----=====
> Notice: The information contained in this e-mail
> message and/or attachments to it may contain
> confidential or privileged information. If you are
> not the intended recipient, any dissemination, use,
> review, distribution, printing or copying of the
> information contained in this e-mail message
> and/or attachments to it are strictly prohibited. If
> you have received this communication in error,
> please notify us by reply e-mail or telephone and
> immediately and permanently delete the message
> and any attachments. Thank you
>
>
>

Attachment:
user_207089.ezm (zipped)Arun,
Are you doing a POST with multi-part encoding? If so, a solution similar
to file upload would work for you. If not, then the String in action-form
approach that I posted earlier should work.
- Rahul Mohan
From:
Arun Kumar Boppudi <arunkumar.boppudi@(protected)>
To:
Struts Users Mailing List <user@(protected)>
Date:
29-07-2010 13:34
Subject:
Re: Reading input stream (xml)
Rahul,
I am not sending XML content as part of the query string, only XML content
will be sent in the request body. As struts framework uses the
getParameter
to populate data into the form beans before calling the execute method, we
cannot use the request.getInputStream.
http://archives.java.sun.com/cgi-bin/wa?A2=ind0106&L=jsp-interest&F=&S=&P=49196
-- AB
On Thu, Jul 29, 2010 at 11:01 AM, Rahul Mohan <rahul.mohan@(protected):
> Arun,
>
> You can keep a string property on action form and map it to the xml
field
> so that the xml content is available here on page submit. In the action
> class, then you will be able to get the string and parse it using any
> available xml parser. I don't think Struts provides any shortcut for
this
> requirement.
>
> - Rahul Mohan
>
>
>
> From:
> Arun Kumar Boppudi <arunkumar.boppudi@(protected)>
> To:
> Struts Users Mailing List <user@(protected)>
> Date:
> 29-07-2010 10:32
> Subject:
> Re: Reading input stream (xml)
>
>
>
> Actually, I am not uploading a file. I am creating XML from the data
> entered
> into the form and sending it to the action controller in the POST
request
> body. In the action controller, I would like to parse the XML. How to do
> it
> in Struts 1.3?
>
> -- Arun Kumar Boppudi
>
>
> On Thu, Jul 29, 2010 at 10:24 AM, Rahul Mohan <rahul.mohan@(protected)>
wrote:
>
> > Doesn't this link (
http://struts.apache.org/2.0.14/docs/file-upload.html
> )
> > help you?
> >
> >
> >
> > From:
> > Arun Kumar Boppudi <arunkumar.boppudi@(protected)>
> > To:
> > Struts Users Mailing List <user@(protected)>
> > Date:
> > 28-07-2010 22:09
> > Subject:
> > Reading input stream (xml)
> >
> >
> >
> > If we send XML content in the POST/PUT request to Struts action
> > controller,
> > how to read this content in the Action class?
> >
> > -- AB
> >
> >
> > =====-----=====-----=====
> > Notice: The information contained in this e-mail
> > message and/or attachments to it may contain
> > confidential or privileged information. If you are
> > not the intended recipient, any dissemination, use,
> > review, distribution, printing or copying of the
> > information contained in this e-mail message
> > and/or attachments to it are strictly prohibited. If
> > you have received this communication in error,
> > please notify us by reply e-mail or telephone and
> > immediately and permanently delete the message
> > and any attachments. Thank you
> >
> >
> >
>
>
> =====-----=====-----=====
> Notice: The information contained in this e-mail
> message and/or attachments to it may contain
> confidential or privileged information. If you are
> not the intended recipient, any dissemination, use,
> review, distribution, printing or copying of the
> information contained in this e-mail message
> and/or attachments to it are strictly prohibited. If
> you have received this communication in error,
> please notify us by reply e-mail or telephone and
> immediately and permanently delete the message
> and any attachments. Thank you
>
>
>
=====-----=====-----=====
Notice: The information contained in this e-mail
message and/or attachments to it may contain
confidential or privileged information. If you are
not the intended recipient, any dissemination, use,
review, distribution, printing or copying of the
information contained in this e-mail message
and/or attachments to it are strictly prohibited. If
you have received this communication in error,
please notify us by reply e-mail or telephone and
immediately and permanently delete the message
and any attachments. Thank you

Attachment:
user_207090.ezm (zipped)I think we should use the query string format to use the string in action
form class format. But I am not sending it in the query string format. And I
am not using multipart encoding. Just sending the XML content in POST body.
-- AB
On Thu, Jul 29, 2010 at 2:38 PM, Rahul Mohan <rahul.mohan@(protected):
> Arun,
>
> Are you doing a POST with multi-part encoding? If so, a solution similar
> to file upload would work for you. If not, then the String in action-form
> approach that I posted earlier should work.
>
> - Rahul Mohan
>
>
>
> From:
> Arun Kumar Boppudi <arunkumar.boppudi@(protected)>
> To:
> Struts Users Mailing List <user@(protected)>
> Date:
> 29-07-2010 13:34
> Subject:
> Re: Reading input stream (xml)
>
>
>
> Rahul,
>
> I am not sending XML content as part of the query string, only XML content
> will be sent in the request body. As struts framework uses the
> getParameter
> to populate data into the form beans before calling the execute method, we
> cannot use the request.getInputStream.
>
>
> http://archives.java.sun.com/cgi-bin/wa?A2=ind0106&L=jsp-interest&F=&S=&P=49196
>
>
> -- AB
>
>
> On Thu, Jul 29, 2010 at 11:01 AM, Rahul Mohan <rahul.mohan@(protected):
>
> > Arun,
> >
> > You can keep a string property on action form and map it to the xml
> field
> > so that the xml content is available here on page submit. In the action
> > class, then you will be able to get the string and parse it using any
> > available xml parser. I don't think Struts provides any shortcut for
> this
> > requirement.
> >
> > - Rahul Mohan
> >
> >
> >
> > From:
> > Arun Kumar Boppudi <arunkumar.boppudi@(protected)>
> > To:
> > Struts Users Mailing List <user@(protected)>
> > Date:
> > 29-07-2010 10:32
> > Subject:
> > Re: Reading input stream (xml)
> >
> >
> >
> > Actually, I am not uploading a file. I am creating XML from the data
> > entered
> > into the form and sending it to the action controller in the POST
> request
> > body. In the action controller, I would like to parse the XML. How to do
> > it
> > in Struts 1.3?
> >
> > -- Arun Kumar Boppudi
> >
> >
> > On Thu, Jul 29, 2010 at 10:24 AM, Rahul Mohan <rahul.mohan@(protected)>
> wrote:
> >
> > > Doesn't this link (
> http://struts.apache.org/2.0.14/docs/file-upload.html
> > )
> > > help you?
> > >
> > >
> > >
> > > From:
> > > Arun Kumar Boppudi <arunkumar.boppudi@(protected)>
> > > To:
> > > Struts Users Mailing List <user@(protected)>
> > > Date:
> > > 28-07-2010 22:09
> > > Subject:
> > > Reading input stream (xml)
> > >
> > >
> > >
> > > If we send XML content in the POST/PUT request to Struts action
> > > controller,
> > > how to read this content in the Action class?
> > >
> > > -- AB
> > >
> > >
> > > =====-----=====-----=====
> > > Notice: The information contained in this e-mail
> > > message and/or attachments to it may contain
> > > confidential or privileged information. If you are
> > > not the intended recipient, any dissemination, use,
> > > review, distribution, printing or copying of the
> > > information contained in this e-mail message
> > > and/or attachments to it are strictly prohibited. If
> > > you have received this communication in error,
> > > please notify us by reply e-mail or telephone and
> > > immediately and permanently delete the message
> > > and any attachments. Thank you
> > >
> > >
> > >
> >
> >
> > =====-----=====-----=====
> > Notice: The information contained in this e-mail
> > message and/or attachments to it may contain
> > confidential or privileged information. If you are
> > not the intended recipient, any dissemination, use,
> > review, distribution, printing or copying of the
> > information contained in this e-mail message
> > and/or attachments to it are strictly prohibited. If
> > you have received this communication in error,
> > please notify us by reply e-mail or telephone and
> > immediately and permanently delete the message
> > and any attachments. Thank you
> >
> >
> >
>
>
> =====-----=====-----=====
> Notice: The information contained in this e-mail
> message and/or attachments to it may contain
> confidential or privileged information. If you are
> not the intended recipient, any dissemination, use,
> review, distribution, printing or copying of the
> information contained in this e-mail message
> and/or attachments to it are strictly prohibited. If
> you have received this communication in error,
> please notify us by reply e-mail or telephone and
> immediately and permanently delete the message
> and any attachments. Thank you
>
>
>

Attachment:
user_207092.ezm (zipped)Data goes in request body when you are posting a form. Post requests are
obviously handled by Struts. So it should work. ( Only you know that it is
XML, for Struts its just another String. ) Please see your log for any
exceptions in setting the action form. Also try inspecting your request
using firebug to see if it is being posted.
From:
Arun Kumar Boppudi <arunkumar.boppudi@(protected)>
To:
Struts Users Mailing List <user@(protected)>
Date:
29-07-2010 14:58
Subject:
Re: Reading input stream (xml)
I think we should use the query string format to use the string in action
form class format. But I am not sending it in the query string format. And
I
am not using multipart encoding. Just sending the XML content in POST
body.
-- AB
On Thu, Jul 29, 2010 at 2:38 PM, Rahul Mohan <rahul.mohan@(protected):
> Arun,
>
> Are you doing a POST with multi-part encoding? If so, a solution
similar
> to file upload would work for you. If not, then the String in
action-form
> approach that I posted earlier should work.
>
> - Rahul Mohan
>
>
>
> From:
> Arun Kumar Boppudi <arunkumar.boppudi@(protected)>
> To:
> Struts Users Mailing List <user@(protected)>
> Date:
> 29-07-2010 13:34
> Subject:
> Re: Reading input stream (xml)
>
>
>
> Rahul,
>
> I am not sending XML content as part of the query string, only XML
content
> will be sent in the request body. As struts framework uses the
> getParameter
> to populate data into the form beans before calling the execute method,
we
> cannot use the request.getInputStream.
>
>
>
http://archives.java.sun.com/cgi-bin/wa?A2=ind0106&L=jsp-interest&F=&S=&P=49196
>
>
> -- AB
>
>
> On Thu, Jul 29, 2010 at 11:01 AM, Rahul Mohan <rahul.mohan@(protected)>
wrote:
>
> > Arun,
> >
> > You can keep a string property on action form and map it to the xml
> field
> > so that the xml content is available here on page submit. In the
action
> > class, then you will be able to get the string and parse it using any
> > available xml parser. I don't think Struts provides any shortcut for
> this
> > requirement.
> >
> > - Rahul Mohan
> >
> >
> >
> > From:
> > Arun Kumar Boppudi <arunkumar.boppudi@(protected)>
> > To:
> > Struts Users Mailing List <user@(protected)>
> > Date:
> > 29-07-2010 10:32
> > Subject:
> > Re: Reading input stream (xml)
> >
> >
> >
> > Actually, I am not uploading a file. I am creating XML from the data
> > entered
> > into the form and sending it to the action controller in the POST
> request
> > body. In the action controller, I would like to parse the XML. How to
do
> > it
> > in Struts 1.3?
> >
> > -- Arun Kumar Boppudi
> >
> >
> > On Thu, Jul 29, 2010 at 10:24 AM, Rahul Mohan <rahul.mohan@(protected)>
> wrote:
> >
> > > Doesn't this link (
> http://struts.apache.org/2.0.14/docs/file-upload.html
> > )
> > > help you?
> > >
> > >
> > >
> > > From:
> > > Arun Kumar Boppudi <arunkumar.boppudi@(protected)>
> > > To:
> > > Struts Users Mailing List <user@(protected)>
> > > Date:
> > > 28-07-2010 22:09
> > > Subject:
> > > Reading input stream (xml)
> > >
> > >
> > >
> > > If we send XML content in the POST/PUT request to Struts action
> > > controller,
> > > how to read this content in the Action class?
> > >
> > > -- AB
> > >
> > >
> > > =====-----=====-----=====
> > > Notice: The information contained in this e-mail
> > > message and/or attachments to it may contain
> > > confidential or privileged information. If you are
> > > not the intended recipient, any dissemination, use,
> > > review, distribution, printing or copying of the
> > > information contained in this e-mail message
> > > and/or attachments to it are strictly prohibited. If
> > > you have received this communication in error,
> > > please notify us by reply e-mail or telephone and
> > > immediately and permanently delete the message
> > > and any attachments. Thank you
> > >
> > >
> > >
> >
> >
> > =====-----=====-----=====
> > Notice: The information contained in this e-mail
> > message and/or attachments to it may contain
> > confidential or privileged information. If you are
> > not the intended recipient, any dissemination, use,
> > review, distribution, printing or copying of the
> > information contained in this e-mail message
> > and/or attachments to it are strictly prohibited. If
> > you have received this communication in error,
> > please notify us by reply e-mail or telephone and
> > immediately and permanently delete the message
> > and any attachments. Thank you
> >
> >
> >
>
>
> =====-----=====-----=====
> Notice: The information contained in this e-mail
> message and/or attachments to it may contain
> confidential or privileged information. If you are
> not the intended recipient, any dissemination, use,
> review, distribution, printing or copying of the
> information contained in this e-mail message
> and/or attachments to it are strictly prohibited. If
> you have received this communication in error,
> please notify us by reply e-mail or telephone and
> immediately and permanently delete the message
> and any attachments. Thank you
>
>
>
=====-----=====-----=====
Notice: The information contained in this e-mail
message and/or attachments to it may contain
confidential or privileged information. If you are
not the intended recipient, any dissemination, use,
review, distribution, printing or copying of the
information contained in this e-mail message
and/or attachments to it are strictly prohibited. If
you have received this communication in error,
please notify us by reply e-mail or telephone and
immediately and permanently delete the message
and any attachments. Thank you

Attachment:
user_207087.ezm (zipped)Hi guys,
I want to check if a error for a certain property is present in the
Action Errors. How can I do that.
BTB, I am using struts 1.3.
Thanks and regards
Vishnu NV

Attachment:
user_207091.ezm (zipped)
here is an extract of my domain model :
public class Survey {
private String freq;
private String information;
private List<Observation> observations;
}
public class Observation {
private int abundance;
private SpeciesGroup speciesGroup;
}
my class SurveyAction implements ModelDriven, I use an edit() method to set
my Survey object as the model, and i manage to populate my jsp form ok. But
when i submit the form my saveOrUpdate() method receives another Survey
object as the one i set in edit() !? a new Survey Object that has the 'freq'
or 'information' modifications but has a null observations property ???
here is the form
<s:form method="post" action="SaveOrUdpdate" theme="simple">
<s:select name="freq" list="freqListe" listKey="other"
listValue="label"></s:select>
<br />
<br />
<s:iterator value="observations">
<s:textfield name="abundance"/>
<s:property value="speciesGroup.id"/> - <s:property
value="speciesGroup.groupName"/>
<br />
</s:iterator>
<s:submit value="save"/>
</s:form>
any ideas?
--
Sent from the Struts - User mailing list archive at Nabble.com.

Attachment:
user_207093.ezm (zipped)hi all
we just finished our snipet to run the Struts2-Spring-Hibernate with REST
http://ugforge.net/gf/project/cimande/scmsvn/?action=browse&path=/branches/rest-struts/
we are working to create a REST based login, and interceptor implementation
for security
hope we can add JQuery shortly, we have already add jquery plugins inside,
but this is just an init project
--
Frans Thamura
Meruvian.
We grow because we share the same believe.
Mobile: +6287885901958
Blog & Profile: http://frans.thamura.info
We provide services to migrate your apps to Java (web), in amazing fast and
reliable.

Attachment:
user_207094.ezm (zipped)hi all
i try using maven of s2, and find this message
7/29/10 10:29:13 PM WIT: Downloaded
http://repo1.maven.org/maven2/net/sf/ezmorph/ezmorph/1.0.3/ezmorph-1.0.3.pom
7/29/10 10:29:17 PM WIT: Downloading
https://repository.apache.org/content/groups/staging/org/apache/struts/struts2-spring-plugin/2.2.1/struts2-spring-plugin-2.2.1.pom
7/29/10 10:29:17 PM WIT: Downloaded
https://repository.apache.org/content/groups/staging/org/apache/struts/struts2-spring-plugin/2.2.1/struts2-spring-plugin-2.2.1.pom
7/29/10 10:29:21 PM WIT: Downloading
http://repo1.maven.org/maven2/org/springframework/spring-web/2.5.6/spring-web-2.5.6.pom
7/29/10 10:29:21 PM WIT: Downloaded
http://repo1.maven.org/maven2/org/springframework/spring-web/2.5.6/spring-web-2.5.6.pom
7/29/10 10:2
but i want to use spring 3.0
any idea?
this is my spring 3.0
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>3.0.2.RELEASE</version>
</dependency>
i found this error
Name clash: The method supports(Class<?>) of type CategoryItemValidator has
the same erasure as supports(Class) of type Validator but does not
override it
--
Frans Thamura
Meruvian.
We grow because we share the same believe.
Mobile: +6287885901958
Blog & Profile: http://frans.thamura.info
We provide services to migrate your apps to Java (web), in amazing fast and
reliable.