Grails 日历插件
我有一个使用 grails 日历插件 grails 日历插件 的 groovy 应用程序。 到目前为止我使用的是日历版本1.1.1,它在IE下有一些错误。 我已升级到版本 1.2.0-SNAPSHOT3 但现在我收到此异常,因此 我不得不降级到以前的版本。
有任何提示如何解决这个问题吗?
预先感谢,路易斯
Error500:Error processing GroovyPageView: Error executing tag <g:form>: org.codehaus.groovy.grails.web.taglib.exceptions.GrailsTagException: Error executing tag <calendar:datePicker>: groovy.lang.MissingMethodException: No signature of method: java.util.GregorianCalendar.setTime() is applicable for argument types: (java.lang.String) values: [Thu Oct 08 11:38:42 CEST 2009]
Servlet: grails
URI: /smtool/grails/billingAccounting/show.dispatch
Exception Message: No signature of method: java.util.GregorianCalendar.setTime() is applicable for argument types: (java.lang.String) values: [Thu Oct 08 11:38:42 CEST 2009]
Caused by: Error processing GroovyPageView: Error executing tag <g:form>: org.codehaus.groovy.grails.web.taglib.exceptions.GrailsTagException: Error executing tag <calendar:datePicker>: groovy.lang.MissingMethodException: No signature of method: java.util.GregorianCalendar.setTime() is applicable for argument types: (java.lang.String) values: [Thu Oct 08 11:38:42 CEST 2009]
Class: GrailsAuthenticationProcessingFilter
I have a groovy application which uses the grails calendar plugin grails calendar plugin.
Up to now I was using the calendar version 1.1.1 which has some bugs under IE.
I've upgraded to version 1.2.0-SNAPSHOT3 but now I am getting this exception, therefore
I had to downgrade to my previous version.
Any hint how to workaround this problem?
Thanks in advance, Luis
Error500:Error processing GroovyPageView: Error executing tag <g:form>: org.codehaus.groovy.grails.web.taglib.exceptions.GrailsTagException: Error executing tag <calendar:datePicker>: groovy.lang.MissingMethodException: No signature of method: java.util.GregorianCalendar.setTime() is applicable for argument types: (java.lang.String) values: [Thu Oct 08 11:38:42 CEST 2009]
Servlet: grails
URI: /smtool/grails/billingAccounting/show.dispatch
Exception Message: No signature of method: java.util.GregorianCalendar.setTime() is applicable for argument types: (java.lang.String) values: [Thu Oct 08 11:38:42 CEST 2009]
Caused by: Error processing GroovyPageView: Error executing tag <g:form>: org.codehaus.groovy.grails.web.taglib.exceptions.GrailsTagException: Error executing tag <calendar:datePicker>: groovy.lang.MissingMethodException: No signature of method: java.util.GregorianCalendar.setTime() is applicable for argument types: (java.lang.String) values: [Thu Oct 08 11:38:42 CEST 2009]
Class: GrailsAuthenticationProcessingFilter
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
很难说,但程序似乎将错误类型的值传递给了 java.util.GregorianCalendar.setTime() 函数。您应该尝试在源代码中找到调用该函数的位置。它将提供更多信息。
Hard to say, but it seems that the program passed a wrong-type value into java.util.GregorianCalendar.setTime() function. You should try to find where the function is called in the source code. It will provide more information.