db.default.driver=org.h2.Driverdb.default.url="jdbc:h2:file:E:/myproject/setup/db/monitor"db.default.user=sadb.default.password=sadb.default.jndiName=DefaultDSjpa.default=defaultPersistenceUnit
db.seconddb.driver=com.mysql.jdbc.Driverdb.seconddb.url="jdbc:mysql://localhost/dbname"db.seconddb.username="root"db.seconddb.password="secret"db.seconddb.jndiName=SecondDSjpa.seconddb=secondPersistenceUnitJPA.em("default")
JPA.em("seconddb")
<persistence xmlns="http://xmlns.jcp.org/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd"
version="2.1">
<persistence-unit name="defaultPersistenceUnit" transaction-type="RESOURCE_LOCAL">
<provider>org.hibernate.jpa.HibernatePersistenceProvider</provider>
<non-jta-data-source>DefaultDS</non-jta-data-source>
<properties>
<property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect"/>
<property name="hibernate.show_sql" value="true" />
<property name="hibernate.format_sql" value="true" />
</properties>
</persistence-unit>
</persistence>
Regards,Mitesh--
You received this message because you are subscribed to a topic in the Google Groups "play-framework" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/play-framework/IxKmJ7lUGEE/unsubscribe.
To unsubscribe from this group and all its topics, send an email to play-framewor...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/play-framework/87d460ac-a2a4-4c2e-ae43-4c54db45b41e%40googlegroups.com.
I'm not sure if two separate are necessary because I haven't tried using two databases. But since you have a data source defined in the default I guess that you need to have a separate where you have the other data source.
/Johan Dahlberg
To view this discussion on the web visit https://groups.google.com/d/msgid/play-framework/CACy8X4DCXRjjeMC9Lz%3D0j-k1S91pVCZU8hwiATEx%2BQdYx8ZMag%40mail.gmail.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/play-framework/CAGU5y414k0L3xbdY6ftRZMQhhSbAEzuUeGFgg08XU%3DyTi_zNWw%40mail.gmail.com.