[Grails] command object里面不能声明service吗?
tomcatlee
2009-06-28
用command object验证验证码,用jcaptchas插件,在controller里面声明
def jcaptchaService 是可以用的,但是在command object里面声明就不管用,说找不到.如果不能在command object里面声明,那么怎么从controller里面把jcaptchaService 传过去呢?调用command object是这样的: def verify={VerifyMailCommand cmd-> if(cmd.hasErrors()) { render(view:"verifyMail", model:[cmd:cmd]) }else { |