问题标签 [kundera]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
jpa-2.0 - JPA 2.0:NoSuchMethodError:javax.persistence.EntityManagerFactory.getCache()Ljavax/persistence/Cache
我正在尝试在 Weblogic 10.3.6 上运行基于 Spring 的 Web 应用程序。此应用程序使用 Apache Cassandra 2.0.7 版来存储/访问数据。
我们使用 JPA 2.0 和 persistence.xml 文件,如下所示:
我还通过如下修改 commEnv.sh 文件在 Weblogic 10.3.6 中应用了 JPA 2.0 补丁:
应用程序部署成功,但在尝试通过 EntityManager 访问后端时,我看到如下错误:
pom文件中的相关条目是:
有人可以通过建议这里有什么问题来帮忙吗?
问候,
阿南德
mongodb - Persistence unit for class issue
I am using Kundera with mongodb on a windows 7 box. I am trying to use int data type. But I am getting the following error.
My entity object has the following fields
My persistence.xml looks like below
I wasted 2 days around this but not able to get the solution. Any help would be appreciated
jpa - Using Cassandra and MySQL together with JPA in Play framework
I would like to use Cassandra NoSQL server with an RDBMS in Play 2.3.0!
Started to build it up using Kundera, according to this tutorial:
http://recipes4geeks.com/2013/07/06/play-nosql-building-nosql-applications-with-play-framework/
It works fine, and I can use it with pure mysql-jdbc connection, and it also works if I use jdbc for Cassandra connection and JPA for MySQL.. .. but the goal is to use a persistence framework, without handling basic JDBC stuffs!
It looks, this problem was mentioned in the link above:
Caution: javaJdbc app dependency downloads hibernate-entitymanager jar file that interferes with Kundera. Make sure you remove this app dependency which is by default present.
- If I remove the hibernate-entitymanager from the dependencies, the project runs, but when it wants to call the Persistence.createEntityManagerFactory("mysql") method, Play says: No Persistence provider... as it was expected.
- If I keep the hibernate-entitymanager in the dependencies list, beside the kundera client, the Play server simply shuts down.
Is there a possibility to make it work or I have to replace Kundera?
cassandra - Cassandra Not able to save with Kundera after deleting row
While trying to work on Casandra we Recently faced a strange issue. Our current implementation is Cassandra + Spring MVC + Kundera.
Issue:: We are trying to save the object via persist method of EntityManager. But the behaviour is very inconsistent, at times its not saving the details on DB. On checking the application logs there is no error or exception, rather it saves successfully.
Another issue which we are facing is, While trying to debug some test set, we deleted a row from Casandra. And made the application to reinsert it. But after deleting and saving the row multiple times, Now it is not able to show the new records..
The Casandra server I have is a single node server running on my machine.
Please suggest.
java - Kundera 和 MySQL 的简单用例
我是昆德拉的新手。我的用例是 Kundera 和 MySQL。我正在使用 spring 的 CrudRepository 保存一个实体。该实体中的 ID 是自动生成的。昆德拉在数据库中成功地保存了该对象。但返回错误的 ID。如果我使用该 ID 从 DB 中查找数据,则返回 null。
如果我遗漏任何东西,请告诉我。
实体类:
主要课程:
CRUD 存储库:
jpa-config.xml:
持久性.xml:
java - 如何使用 kundera 配置 orm.xml 实体映射文件?
我正在使用 kundera 2.13 版。我正在探索将 Kundera 与 Oracle NOSQL db 一起使用。
如何配置 Kundera 以使用在运行时生成的自定义 xml 映射文件?
由于设计原因,我不能对实体使用注释(它们也是运行时生成的)。
所以,我必须使用 XML 映射。但所有示例仅显示注释。
对于 eclipselink 参数“eclipselink.metadata-source.xml.file”可以配置运行时。
谢谢戈皮
_
java - 使用 Play 框架更新 CQL Cassandra
我有一个需要更新 CQL cassandra 表的列值的要求。我尝试了 Kundera,但似乎它用于 TQL 模式。
任何使用 Play 更新 CQL cassandra 表的指针?
spring - 我使用哪个 api 将 Cassandra 与 spring -rest 集成
我是新 Cassandra(甚至没有编写查询的想法),我想将 Cassandra 与 spring rest 应用程序集成。我浏览了许多链接,但我无法确定哪个更好 spring-data-Cassandra 或 Kundera 或 Easy-Cassandra。
请告诉我彼此的优势或劣势,以便我可以在我的应用程序中选择和使用它们。
是否有可能使用 spring-data-Cassandra 或 Kundera 的组合?
spring - LocalContainerEntityManagerFactoryBean 中的 packagesToScan 属性不起作用
嗨,我确实有一个应用程序,我正在尝试为 cassandra 创建 LocalContainerEntityManagerFactoryBean ...
我在 LocalContainerEntityManagerFactoryBean 中添加了 pakagesToScan 属性,但它仍在尝试扫描所有包...
我的 Spring xml 如下...
我的 Persistence.xml 如下
我得到的错误如下:
我无法解决这个问题..我尝试使用包名 org.amaze.db.usage.objects.* 的通配符,但帮助...
我正在使用弹簧 4.1.1 ....
提前致谢...
spring - 如何使用 @Bean 方法中的 Spring Boot 以编程方式正确配置 Kundera?
我找到了一个可以接受的解决方案。往下看。
我想使用 Kundera 作为我的持久性提供程序来将我的 JPA 对象存储在 HBase 中。我以注释驱动的方式做所有事情,即,我没有也不想要persistence.xml。
到目前为止,我做了以下事情:
我ehcache.xml
的src/main/resources
.
当我尝试运行它时,它退出了,堆栈跟踪归结为:
当我通过设置持久性单元名称时,bean.setPersistenceUnitName("foo");
我得到:No persistence unit with name 'foo' found
我做错了什么,我真的需要一个persistence.xml吗?我不想要一个,因为我希望能够通过命令行开关设置配置。这些被插入到Environment
我可以用作我的@Bean
方法的参数并以这种方式放入我的属性对象中。
- - 编辑 - -
我现在persistence.xml
使用基本设置创建了一个,并且只是覆盖了我Properties
对象中的自定义设置。这行得通,但现在我遇到了另一个问题,连接到 HBase 会严重锁定 Java 进程,我必须杀死 -9 它。接下来是另一个问题。