Questions tagged [teneo]

Teneo provides integration with EclipseLink to support persistence of arbitrary EMF models with JPA.

The original goal of this integration was to allow developers to map EMF generated classes with standard JPA to existing databases (so called 'meet-in-the-middle' mapping). This is an important feature if you're building an application on an existing database. However Teneo also supports a full model driven development approach that supports generating the classes, JPA mappings, and database schema from an EMF model.

9 questions
1
vote
0 answers

Serialisation of EMF-Model to XML file takes several hours

I have the following problem that when I have a very big EMF Model (>1G on heap) to serialise to a XML file it takes several hours. I've no idea if I'm doing something wrong that causes that long delay or if this is common to take that long. We have…
tzwickl
  • 1,341
  • 2
  • 15
  • 31
1
vote
1 answer

NoClassDefFoundError in Teneo tutorial of Peter Friese

I tried out the tene tutorial of peter friese. For those who don't know what im talking about here's a link to it: http://www.peterfriese.de/using-teneo-and-emf-to-store-your-data/ I followed all steps till the end but after that i ran into a no…
1
vote
0 answers

Updating Teneo to version 1.2

I have Eclipse SDK Version: 4.2.1 with Teneo 1.1.2 I'm studying the tutorial EMF-Development And there are instruction how to update my Teneo to version 1.2.0 here I do all what is written there, but Eclipse gives a mistake: Cannot complete the…
Victor_ZZ
  • 11
  • 1
0
votes
1 answer

Efficient EMF database Integration

I want to save/load an emf model to/from database. The tool that persistently pops whenever I search for such a topic is Teneo which I used and created a database schema to and from which I can save and load. But My main worries are the produced…
Abdo Salem
  • 55
  • 1
  • 8
0
votes
1 answer

How to use @Formula annotation in Teneo/EMF

I am using EMF and Teneo. I have an Employee class with a derived attribute. I also defined a Hibernate @Formula annotation for it as follows: * @model * default="0" transient="true" changeable="false" * derived="true"…
user2465039
  • 894
  • 1
  • 11
  • 28
0
votes
1 answer

HQL query with @JoinCoumn mapping returns object[] instead of Object

I have this HQL query: from Usergroup as us join us.user where Usergroup and User are both types. But when the data is fetched. It returns an ArrayList that contains Object[] that cotnain the Usergroup and the corresponding User. Where as with from…
user2405469
  • 1,953
  • 2
  • 22
  • 43
0
votes
1 answer

"Missing requirements" when defining an Eclipse target platform with RAP and Teneo

I created a target file and added the RAP target platform and a local folder with some proprietary bundles. When I tried to add the other dependencies for Teneo and Hibernate as stated in this tutorial, some dependencies for Teneo are not satisfied.…
Abde
  • 31
  • 1
  • 5
0
votes
1 answer

Teneo ignores mappedBy in OneToMany and created ForeignKey

I am trying to follow this example and create a many to many relation in model in a separate table with composite key and additional columns using Teneo. My model is in hibernate and this is what the ecore file like for the part of model:
rozagh
  • 73
  • 1
  • 12
0
votes
1 answer

Option cascade_policy_on_non_containment in Teneo

I am working with Teneo/EMF/Hibernate and I've made a simple test. I create 2 objects A and B. A has a non-containment relation one-to-many with B (B1). This is my test code: // LOAD A Session session =…
Nahuel
  • 134
  • 1
  • 5