新しい基本的な grails プロジェクトを作成しました。私は基本的な Java オブジェクトを grails の外で書いて、ぎこちなくしています。.jar ファイルを grails プロジェクトに追加しましたproperties > Java build path > Libraries tab > Add Jars
。
次に、grails コントローラーでアクセスしようとすると、class def not found エラーが発生します。
私は何を間違っていますか?
TestController.groovy
package testproject
import test.TestClass
class TestController {
def index() {
def testClass = new TestClass()
render 'Index page'
}
}
と:
jar 内のTestClass.java
package test;
public class TestClass {
private String string;
public void setString(String string)
{
this.string = string;
}
public String getString()
{
return string;
}
}
エラーは次のとおりです。
C:\Users\One\TestProject\grails-app\controllers\testproject\TestController.groov y: 3: クラス test.TestClass を解決できません @ 行 3、列 1. import test.TestClass