我正在尝试在 GSP 中使用 groovy 函数。请帮帮我,因为我要在这里剥我的头发。
在我的 GSP 顶部,我有<%@ page import = company.ConstantsFile %>
在我的 GSP 里面我有
<p>
I have been in the heating and cooling business for <%(ConstantsFile.daysBetween())%>
</p>
和我的 ConstantsFile.groovy
package company
import static java.util.Calendar.*
class ConstantsFile {
def daysBetween() {
def startDate = Calendar.instance
def m = [:]
m[YEAR] = 2004
m[MONTH] = "JUNE"
m[DATE] = 26
startDate.set(m)
def today = Calendar.instance
render today - startDate
}
}
我也尝试过将租户更改为 puts、system.out 等,但这不是我的主要问题。
Error 500: Internal Server Error
URI
/company/
Class
java.lang.NullPointerException
Message
Cannot invoke method daysBetween() on null object
所以我尝试
<p>
I have been in the heating and cooling business for <%(new ConstantsFile.daysBetween())%>
</p>
但后来我明白了
Class: org.codehaus.groovy.control.MultipleCompilationErrorsException
unable to resolve class ConstantsFile.daysBetween @ line 37, column 1. (new ConstantsFile.daysBetween()) ^ 1 error
请有人帮助我或将我指向一个显示要做什么的网站..我尝试过谷歌搜索,所有内容都在谈论 ag:select 或其他类型的标签...我只想像我使用的那样输出函数的结果在 JSP 中。