开发者

Change values in persistence.xml from within the program

Is it possible to change va开发者_如何转开发lues in persistence.xml from within the program that is using it ? If yes, i would appreciate some hints or/and links to read.


Yes

    // connect to database
    log.info("Connecting to database @ " + dbUrl + " using " + dbUser + "/" + dbPass);
    emf = Persistence.createEntityManagerFactory("manager", Maps.create(
            "javax.persistence.jdbc.user", dbUser,
            "javax.persistence.jdbc.password", dbPass,
            "javax.persistence.jdbc.url", dbUrl
    ));


not part of jpa spec, so no. some implementations may allow some updates ... e.g dayanucleus http://www.datanucleus.org/products/accessplatform_3_0/jpa/persistence_unit.html but what do u want to change?

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜