そのため、GSP 内の groovy 関数にアクセスしようとしています。私は持っている
<%@ page import = company.ConstantsFile %>
その後、私が持っているgspで
I have been in the heating and cooling business for <%daysBetween()%>
そして、私の 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
return today - startDate
}
}
編集:エラーメッセージ:
Class
groovy.lang.MissingMethodException
Message
No signature of method: