Re: Struts1 & Struts2 implementation

2015-02-23 Thread Paul Benedict
Do you have different extensions? For example, *.do goes to S1 and *.action goes to S2. Cheers, Paul On Mon, Feb 23, 2015 at 10:48 AM, Lilylove toshop < lilylove2s...@yahoo.com.invalid> wrote: > Dear All, > I want to use Strut1 & Struts2 in my coexist application. I have both the > struts-con

Struts1 & Struts2 implementation

2015-02-23 Thread Lilylove toshop
Dear All, I want to use Strut1 & Struts2 in my coexist application.  I have both the struts-config.xml and struts.xml in my Netbeans project.  The application was deployed successfully, however it didn't execute the struts2 code.  Is there a step that I missed to get the application to execute

Re: Aw: Re: Overwrite a TypeConverter for a Map with Generics

2015-02-23 Thread Christoph Nenning
> Hello, > thanks for your answer. Have you tried your solution and got it > working? I already tried that before, but it always picked up the > global converter de..converter.StringTrimConverter. But maybe i > did something wrong. > > I tried it with @TypeConversion(rule = ConversionRule.M

Aw: Re: Overwrite a TypeConverter for a Map with Generics

2015-02-23 Thread Andreas Sachs
Hello, thanks for your answer. Have you tried your solution and got it working? I already tried that before, but it always picked up the global converter de..converter.StringTrimConverter. But maybe i did something wrong. I tried it with @TypeConversion(rule = ConversionRule.MAP, converter =

Re: Overwrite a TypeConverter for a Map with Generics

2015-02-23 Thread Christoph Nenning
> Hello, > how can i overwrite a TypeConverter for a Map? > > I defined the following global TypeConverter: > java.lang.String=de..converter.StringTrimConverter > (the converter removes blanks from the string) > > This converter is used for every String, even inside maps. That's fine. > >