RE: Jodd/Madvoc MVC framework

2016-01-26 Thread Christoph Nenning
> this is what I have for instructions: > >git clone https://github.com/oblac/jodd.git > >gradlew build > Please verify > Thanks! > Martin I can at least assemble JARs, but tests are failing. As I'm using windows powershell I must explicitly write: .\gradlew.bat assemble ('assemble' omits

Re: Jodd/Madvoc MVC framework

2016-01-26 Thread Christoph Nenning
> I'm just not a fan of declaring things based on strings, including result > types. > > I don't know what the easiest/best answer is, probably I'll end up doing > nothing :( > Well, result type strings could be avoided with specialized classes, like return new

RE: Jodd/Madvoc MVC framework

2016-01-26 Thread Martin Gainty
I had the wrong providers listed in $JAVA_HOME/jre/lib/security/java.securityas soon as I security.removeProvider SunPKCS11 provider and replaced with sun.security.rsa.SunRsaSign I was able to grab the gradle distro and unpack, compile, run-tests and assemble

RE: Jodd/Madvoc MVC framework

2016-01-26 Thread CRANFORD, CHRIS
This is one of the aspects of Spring MVC that I prefer over that of Struts2. The return types from action handler methods vary and influences what the servlet handler is to do after the action handler has completed. The framework could be tweaked to examine the action method's return type and

Re: Jodd/Madvoc MVC framework

2016-01-26 Thread Lukasz Lenart
Such functionality is already supported, you can return an instance of the Result class instead of a String and Struts2 will handle it. Though, it isn't documented ;-) 2016-01-26 15:26 GMT+01:00 CRANFORD, CHRIS : > This is one of the aspects of Spring MVC that I prefer

Re: Jodd/Madvoc MVC framework

2016-01-26 Thread Mike Guo
I saw your guys already have many emails about the result string, but I think it is ok, just a little curious, any issue when we use string result? Thanks Mike > 在 2016年1月26日,22:44,Lukasz Lenart 写道: > > Such functionality is already supported, you can return

Re: Jodd/Madvoc MVC framework

2016-01-26 Thread Dave Newton
No issue in the sense of it working or not. *My* issue with strings is that it completely ignores the type system, such as it is, that Java gives us. On Tue, Jan 26, 2016 at 9:42 PM, Mike Guo wrote: > > > I saw your guys already have many emails about the result string, but I

Re: Jodd/Madvoc MVC framework

2016-01-26 Thread Mike Guo
That's true.;) 发自我的 iPhone > 在 2016年1月27日,10:47,Dave Newton 写道: > > No issue in the sense of it working or not. > > *My* issue with strings is that it completely ignores the type system, such > as it is, that Java gives us. > >> On Tue, Jan 26, 2016 at 9:42 PM, Mike