0

我认为这个问题可能有点愚蠢——我正在做我的第一个 Play 项目,因此我仍在训练中尝试了解该软件;)

好吧,我有一个包含 textarea 的页面。用户应该能够在那里输入文本并将其永久存储在标准 ebean 数据库中。但是存储永远不起作用,我找不到原因!

这是数据库对象的类定义:

public class Entry extends Model {
    @Required
    public String   text;   
    public String   studentName;
    @Id
    public long     id;
    public static   Finder<Long, Entry> finder = new Finder<Long, Entry>( Long.class, Entry.class);

    public static Entry getMe(Long id) {
        return finder.byId(id);
    }
    public static void saveMe(Entry toDataBase) {
        toDataBase.save();
    }
    // ....
 }

这是文本区域:

@(entryForm: Form[Entry])
@import helper._
@main("xy") {

<h1>report for @entryForm("studentName")</h1>

    @form(routes.Application.storeReport()) {
        @textarea(entryForm("report:"))
        <input type="submit" value="Store Report">
    }
}

Application.storeReport()方法 entryForm.bindFromRequest().hasErrors() 中总是 true..

并更改@textarea(entryForm("report:"))@textarea(entryForm("text"))(..告诉事情,我真正想要填写的 3 个条目字段中的哪一个)甚至会导致 PersistenceException:

“类型 [class models.Entry] 不是注册实体?如果您没有明确列出要使用的实体类,Ebean 将在类路径中搜索它们。如果实体在 Jar 中,请检查 ebean.search.jars ebean.properties 文件中的属性或检查 ServerConfig.addJar()。]"

ToDoList 示例为导向,除了让它扩展 play.db.ebean.Model 之外,我无法检测到如何注册一个实体!

4

1 回答 1

1

我认为您忘记了 Entry 类上的 @Entity 注释。

于 2012-10-12T06:30:46.567 回答