The metamodel tag has no wiki summary.
10
votes
4answers
6k views
How to generate JPA 2.0 metamodel?
In the spirit of type safety associated with the CriteriaQuery JPA 2.0 also has an API to support Metamodel representation of entities. Is anyone aware of a fully functional implementation of this API ...
5
votes
1answer
142 views
5
votes
1answer
900 views
Eclipse, JPA 2.0 metamodel generator and Spring Roo working together
Is there a way to put Spring Roo and JPA 2.0 metamodel generator to work together?
I have a Spring Roo project and use Eclipse as IDE. I was able to configure the Eclipse project and maven pom.xml to ...
5
votes
3answers
6k views
Creating queries using Criteria API (JPA 2.0)
I'm trying to create a query with the Criteria API from JPA 2.0, but I can't make it work.
The problem is with the "between" conditional method. I read some documentation to know how I have to do it, ...
4
votes
1answer
2k views
How to implement polymorphic JPA entities with generic relations
I'm trying to use JPA 2.0 to create polymorphic entities with generic relations. There should be two tables, an event table and a notification table. Inside those table are concrete entities that are ...
3
votes
2answers
62 views
Why do the JPA2 MetaModel get generated with volatile members?
I have just used org.apache.openjpa.persistence.meta.AnnotationProcessor6 to generate the MetaModel for my JPA2 entities.
@javax.annotation.Generated
...
2
votes
3answers
89 views
DynamicData - How can I show the child count in the Children.ascx.cs FieldTemplate?
MS DynamicData's Children.ascx.cs file has a Page_Load method that returns a hyperlink which says "View Children". I want to append the number of children to the end of the hyperlink text. Below is my ...
2
votes
1answer
526 views
JPA 2 Delete/Insert order from Metamodel
I'm trying to use the JPA2 metadata to figure out the order to insert/delete rows from a database so constraints are not an issue (to be used later in Java code). This is part of a backup/restore ...
2
votes
6answers
309 views
Where is the Android Metamodel located?
I would like to use Android for Model-Driven-Software-Development.
For this, I need to locate the Android Model in the SDK. I already searched a while for it, but were not able to find it. Has anyone ...
1
vote
1answer
25 views
How do I reference the -s flag for javac in an ant script?
I am trying to compile the canonical metamodel classes for some JPA entities using an ant script. I am using OpenJPA. I would like the generated files to be located in a subdirectory which, ...
1
vote
1answer
70 views
UI Acceleo Launcher Project doesn't work
I've followed this simple tutorial wiki.eclipse.org/Acceleo/Getting_Started my aim is creating an UI launcher...
However when I finish and a click on 'Acceleo Model to Text'>'generate' the folder ...
1
vote
2answers
144 views
How to get SingularAttribute mapped value of a persistent object?
I have a persistent object (Action) and auto generated data model (Action_). By having an object of Action class and an instance of SingularAttribute, is it possible to get the field corresponding to ...
1
vote
1answer
144 views
Metamodel classes generated by Hibernate tools
I'm using Hibernate Tools in Eclipse to reverse engineer the domain entities of an existing database.
I more-or-less have everything generating how I want, although I still get a batch of "Metamodel" ...
1
vote
1answer
180 views
Tutorial for building a domain specific visual language using Eclipse
Is there an implementation example on how to build a domain specific visual language ( for example modeling a Petri-Net) using Eclipse?
1
vote
1answer
1k views
JPA Eclipselink Subquery in where clause with between, CriteriaBuilder and metamodel
I want to do this query with metamodel but I can't!! I dont know how to do this.
MYSQL QUERY (with this query I want to get all the rows from the Clases table that are teaching in this moment):
...
1
vote
1answer
224 views
JPA/Metamodel: Strange (inconsistent ?) example in Sun Docs
In Sun Online resources, they provide son example about the usage of the Criteria/Metamodel API, but as far as I understand Java, it seems to be impossible to work:
CriteriaQuery<Pet> cq = ...
1
vote
2answers
440 views
Why aren't APT generated classes being compiled by Eclipse?
In my Eclipse project I'm using a third-party annotation processor, Hibernate Metamodel Generator to be exact. The annotation processor works as expected and generates .java files as specified by the ...
0
votes
0answers
27 views
What is the relationship between hibernate-jpamodelgen and hibernate.ejb.metamodel.generation?
(I posted an abbreviated form of this question over at the uninhabited, ghost town, scorched-earth, spam-infested, utterly useless Hibernate "forums", but didn't waste too much energy on it over ...
0
votes
0answers
29 views
Flexible database schema to store a system metamodel [closed]
I have a metamodel (in FAMIX, description here) of a system and I have to store some information regarding the system described in this metamodel. I need a database for this, but I'm not sure which ...
0
votes
0answers
103 views
When to use @MappedSuperClass?
I'm not sure when is necessary to use the annotation:
@MappedSuperclass
I have some entities that extend from an abstract class that only defines methods, no attributes. Do I have to use it anyway?
...
0
votes
0answers
146 views
JPA 2.0 Metamodel: How to retrieve attributes corresponding to a UniqueConstraint annotation
I have a bunch of entities that have a surrogate primary key and one or more business keys. The columns containing the business keys are available as an UniqueConstraint annotation on the entity ...
0
votes
0answers
52 views
A simple XSD subset
I need to create a metamodel that is a subset of XSD. I don't want to take the XSD itself because it is too powerful for my needs. I don't want to reinvent the wheel too.
I would cut off everything ...
0
votes
0answers
421 views
Subquery with Criteriabuilder and metamodel
How can i do this MySQL query:
SELECT * FROM clases cl
WHERE CURRENT_TIME() BETWEEN
(SELECT ml2.inicio FROM modulos ml2 WHERE cl.modulo_id=ml2.modulo_id ) AND
(SELECT ml2.fin FROM modulos ml2 WHERE ...
0
votes
2answers
146 views
Tool support for MOF (Meta Object Facility)
I was looking into OMG's Business Process Definition MetaModel (BPDM) and found the meta-model definition as XMI/CMOF(Complete MOF) file (download here).
Now I was looking for any tools that support ...
0
votes
2answers
430 views
MDA : Model Driven Architecture
Need a idea for developing very simple application demonstrating concepts of MDA.
0
votes
1answer
817 views
CollectionAttribute testing in JPA CriteriaBuilder
I have a CriteriaBuilder and am trying to create a predicate to restrict results in a CollectionAttribute. I would like to say something like get all entities in this collection where the entity's ...