Re: Confused about upgrading Apache Struts

2018-04-11 Thread David Greene
a where to begin. I am not a web > developer, I am only a system administrator, so I have no idea where I > should even look to figure out how to upgrade this thing. Any and all help > will be greatly appreciated! > > > Sincerely > > n00b needing help > -- ---

Re: Struts 2.5.14 support for java 8/java 9/java 10

2018-03-05 Thread David Greene
> > Thanks, > > A.S > > - > To unsubscribe, e-mail: user-unsubscr...@struts.apache.org > For additional commands, e-mail: user-h...@struts.apache.org > > -- ---- *David Greene* *Se

Re: Which Struts Version To Use?

2017-09-19 Thread David Greene
Just from my personal experience, migrating from 2.3.x to 2.5.x was a very small development task. I was actually surprised at how few changes were required. As someone else mentioned, a little bit of regex to weed out the now-unused tag arguments was probably the 'hardest' part. I would recomme

Re: Upgrading spring 3.0.7 to spring 3.2.3 caused "INPUT" instead of "SUCCESS" result

2013-08-24 Thread David Greene
karound. > > P.S. I hope, that someone will find a better solution :) > > > 2013/8/24 David Greene > > > I had the same issue, here's my thread from a while back: > > > > http://comments.gmane.org/gmane.comp.jakarta.struts.user/184485 > > > > I

Re: Upgrading spring 3.0.7 to spring 3.2.3 caused "INPUT" instead of "SUCCESS" result

2013-08-24 Thread David Greene
ly hack that's workarounding my issue: > @Override > public void setFieldErrors(Map> errorMap) { > > > if(errorMap.containsKey("org.springframework.context.annotation.ConfigurationClassPostProcessor.importRegistry")){ > > > errorMap.remove("org.springframework.context.annotation.ConfigurationClassPostProcessor.im

Re: Actions now require INPUT result after installing struts2-spring plugin

2013-07-18 Thread David Greene
Yes, they are. On Thu, Jul 18, 2013 at 2:24 PM, Dave Newton wrote: > Aren't interceptors also created by the struts object factory? > On Jul 18, 2013 12:28 PM, "David Greene" wrote: > > > And, now retracting my retraction - @Autowired DOES work for Actions (via

Re: Actions now require INPUT result after installing struts2-spring plugin

2013-07-18 Thread David Greene
And, now retracting my retraction - @Autowired DOES work for Actions (via no setter), I was just in a JEE Filter, not an Interceptor which obviously doesn't have Spring access for @Autowired. On Thu, Jul 18, 2013 at 11:19 AM, David Greene wrote: > I very well may do that. Thanks for

Re: Actions now require INPUT result after installing struts2-spring plugin

2013-07-18 Thread David Greene
al Struts 3 can tidy things up. > But if you got little incremental improvements for the 2.x line, by all > means, suggest what could be improved upon. :-) > > > On Thu, Jul 18, 2013 at 11:08 AM, David Greene > wrote: > > > Ah, there you have it. > > > > Sti

Re: Actions now require INPUT result after installing struts2-spring plugin

2013-07-18 Thread David Greene
user error thing? On Thu, Jul 18, 2013 at 11:02 AM, Paul Benedict wrote: > You don't need @Autowired and @Inject in your Action with the Spring > plugin. It will call any setter based on type (or name). > > > On Thu, Jul 18, 2013 at 10:58 AM, David Greene > wrote: > &

Re: Actions now require INPUT result after installing struts2-spring plugin

2013-07-18 Thread David Greene
s by type for all setters where a type may match from the spring context? If I switch to "name" instead of "type" will that inject anything that's the same name regardless of @Autowired or @javax.inject.Inject ?? On Thu, Jul 18, 2013 at 10:45 AM, David Greene wrote:

Re: Actions now require INPUT result after installing struts2-spring plugin

2013-07-18 Thread David Greene
gt; > > lists. As part of a debugging interceptor chain I had a small > interceptor > > > that just dumped those to the log file after every request--made > looking > > > for stuff like this trivial. > > > > > > Dave > > > > > > &g

Re: Actions now require INPUT result after installing struts2-spring plugin

2013-07-18 Thread David Greene
ut a breakpoint in the ValidationInterceptor code and > step through. Nothing in the Spring plugin is causing your issue; Spring > just does dependency injection. > > > On Thu, Jul 18, 2013 at 9:59 AM, David Greene > wrote: > > > How would I figure out what is failing valid

Re: Actions now require INPUT result after installing struts2-spring plugin

2013-07-18 Thread David Greene
2013 at 10:44 AM, David Greene > wrote: > > > Wishful thinking... > > > > > value="org.apache.struts2.spring.StrutsSpringObjectFactory" /> > > > > to > > > > > > > > made no change. I couldn't find any other differ

Re: Actions now require INPUT result after installing struts2-spring plugin

2013-07-18 Thread David Greene
ything returns to normal. I'm reviewing the stacktrace and everything indicates that there's no "INPUT" result (which is true); however, I don't know where or how it's deciding to do INPUT instead of SUCCESS. Does anyone know what class that might be? -David On Th

Re: Actions now require INPUT result after installing struts2-spring plugin

2013-07-18 Thread David Greene
I'm assuming this is my problem - I'll let you know later today. On Thu, Jul 18, 2013 at 12:38 AM, Lukasz Lenart wrote: > 2013/7/18 David Greene : > > Unfortunately, I don't really have much more information to go on. What > > other information might be helpful t

Re: Actions now require INPUT result after installing struts2-spring plugin

2013-07-17 Thread David Greene
t 5:59 PM, Dave Newton wrote: > Without further info it's difficult to help. > > Sounds like validation or type conversion is failing. > > Dave > > > > On Wed, Jul 17, 2013 at 6:38 PM, David Greene > wrote: > > > Afternoon everyone, > > > >

Actions now require INPUT result after installing struts2-spring plugin

2013-07-17 Thread David Greene
Afternoon everyone, I've recently installed the struts2-spring plugin and everything seems to be working as expected from the Spring perspective; however, Struts actions now require an "input" result to be defined when there was not one before. I have no idea why this is the case, but I would rat