JPA实体映射到特定表

时间:2016-07-28 07:15:39

标签: java hibernate annotations

我的项目有2个mysql数据库。我已经为他们写过JPA&#。但是在运行它时会出错。

实施例: 数据库:一个表:表1 数据库:两表表2

为数据库创建实体管理器" One"它说"表2"失踪&在为数据库" Two"创建实体管理器时它说"表1"丢失。

2 个答案:

答案 0 :(得分:1)

在persistence.xml中

添加了$ gcc -v Using built-in specs. COLLECT_GCC=gcc COLLECT_LTO_WRAPPER=/usr/lib/gcc/arm-linux-gnueabihf/4.9/lto-wrapper Target: arm-linux-gnueabihf Configured with: ../src/configure -v --with-pkgversion='Raspbian 4.9.2-10' --with-bugurl=file:///usr/share/doc/gcc-4.9/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.9 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.9 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-libitm --disable-libquadmath --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.9-armhf/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.9-armhf --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.9-armhf --with-arch-directory=arm --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-sjlj-exceptions --with-arch=armv6 --with-fpu=vfp --with-float=hard --enable-checking=release --build=arm-linux-gnueabihf --host=arm-linux-gnueabihf --target=arm-linux-gnueabihf Thread model: posix gcc version 4.9.2 (Raspbian 4.9.2-10) (JPA&#39; s / Classes,指的是该持久性单元/数据库)&amp; <class>org.x.y.JPA's</class>

<exclude-unlisted-classes> true </exclude-unlisted-classes>

答案 1 :(得分:0)

对于JPA,您声明了Persistence Unit,它告诉代码要查看哪个数据库,因为您有两个单独的数据库,您将必须拥有多个持久性单元。

请查看SO上的其他answers,了解有关如何进展的提示。