1

我需要设置 2 个单独的数据库。一个用于Test类,另一个用于TestTwo类,但我不知道如何配置application.conf文件。

application.conf(第 1 部分):

db.default.driver=com.mysql.jdbc.Driver 
db.default.url="jdbc:mysql://localhost/dbone?characterEncoding=UTF-8" 

db.dbtwo.driver=com.mysql.jdbc.Driver 
db.dbtwo.url="jdbc:mysql://localhost/dbtwo?characterEncoding=UTF-8" 


尝试 1 失败:两个类都保存到数据库 1(dbone):
application.conf(第 2 部分):

ebean.default="*"
ebean.dbtwo="models.TestTwo"


失败的尝试 2:尝试保存内容时出现错误:

[PersistenceException: The type [class models.TestTwo] is not a registered entity? If you don't explicitly list the entity classes to use Ebean will search for them in the classpath. If the entity is in a Jar check the ebean.search.jars property in ebean.properties file or check ServerConfig.addJar().]

application.conf(第 2 部分):

ebean.default="models.Test"
ebean.dbtwo="models.TestTwo"


如何进行设置以便将 Test 对象保存到 dbone 并将 TestTwo 对象保存到 dbtwo?


编辑:按要求提供 TestTwo 类(没什么特别的;我没有手动分配 Ebean 服务器,除了在 application.conf 文件中):

package models;
import javax.persistence.*;
import play.db.ebean.*;
import play.data.validation.Constraints.Required;

@Entity
public class TestTwo extends Model{
    @Id
    @GeneratedValue(strategy = GenerationType.AUTO)
    public Long id;

    @Required
    public String testString;

    public static Model.Finder<Long, TestTwo> find = new Model.Finder<Long, TestTwo>(Long.class, TestTwo.class);

    public static TestTwo create (String testString){
        TestTwo test = new TestTwo();
        test.testString = testString;
        test.save();
        return test;
    }
}
4

2 回答 2

0

我有同样的问题,这个问题是我在任何地方都能找到的唯一相关主题。我为解决它所做的不是很漂亮,但我让我的所有模型类(属于非默认 ebean 服务器的一部分)覆盖了save()-、delete()- 和 -update()方法。这些覆盖分别调用super.save(dbname),super.delete(dbname)super.update(dbname), 其中dbname是 ebean 服务器的名称。

在启动时,我从配置中提取名称并保存它们,这样它们就不会被硬编码。虽然它看起来很多余,但它为我解决了这个问题。我希望它可以帮助其他像我一样在多年后徘徊在这个问题上的人!

于 2015-02-05T22:19:32.507 回答
0

进化脚本是你写的吗?如果没有,你需要写一个conf>evolutions>default>1.sql

创建表'testtwo':

create table testtwo(
    id          bigint auto_increment not null,
    testString      varchar(100) not null,
    constraint t1_testTwo primary key(id)
);

更远:

SET FOREIGN_KEY_CHECKS=0;

drop table if exists testto;

SET FOREIGN_KEY_CHECKS=1;

当您刷新浏览器时,play 将要求“应用进化”,这将在您的数据库中创建“testtwo”表,您可以在其中保存实体。

于 2016-07-28T18:33:54.123 回答