The embeddable tag has no wiki summary.
0
votes
0answers
16 views
JPA updating Embeddable entities implicitly
I have an Embeddable JPA entity (X) with 2 fields. Now both B and C which are JPA entities are having a reference to (X) with the @Embedded annotation.
Furthermore A has a reference to B and B has a ...
0
votes
0answers
14 views
Bulk insertion of CollectionTable elements in Hibernate / JPA
We are using Hibernate 4.2 as the backing library for JPA 2.0 entities. We have an entity like the following:
@Entity
public class MyEntity {
....
@ElementCollection
@MapKeyColumn(name = ...
1
vote
1answer
39 views
JPA EclipseLink Weaver generates call to porperty getter inside its setter -> NullPointerException
I have an @Embeddable class that uses property access to wrap another object that's not directly mappable by JPA via field access. It looks like this:
@Embeddable
@Access(AccessType.PROPERTY)
public ...
0
votes
1answer
40 views
Dynamic enumerations in Spring, or how to keep Spring away from constructors?
Is "Dynamic enumerations" an oxymoron, like "static variables"? ;-)
I've only been soaking in Spring for a short time, and I suspect I'm not thinking Spring-like yet. I would like to have a ...
0
votes
2answers
453 views
embeddable EJB container of WebSphere 8 can not created - NoClassDefFoundError HpelHelper
I am using the embeddable EJB container of WebSphere 8 to write some unit tests for my EJBs with JUnit4. My IDE is the RAD 8.
Here is my simple test code snippet:
Map properties = new ...
0
votes
0answers
89 views
Embeddable in ElementCollection
I have Embeddable class which look like this:
public class ClobEmbeddableValue {
...fields...
@Lob
@Type(type = "org.hibernate.type.MaterializedClobType")
@Column(name = ...
0
votes
0answers
85 views
OpenJPA 2.0 ElementCollection, map embeddable does not get persisted
To implement internationalization I use the new @ElementCollection annotation of OpenJPA 2.0 together with an embeddable:
@Entity
public class LocalizedEntity {
@Id
private long id;
...
1
vote
0answers
35 views
set with embeddable, nullable properties
I have Set<Reference> with embeddable class in it mapped like this.
@ElementCollection
@ForeignKey(name = "fk_object_org_ref")
@CollectionTable(name = "m_object_org_ref", joinColumns = {
...
3
votes
1answer
178 views
@Embedded object not instantiated automatically if it has no basic datatype fields
Fundamental question: Why aren't @Embedded objects always instantiated?
The interesting observation is that Ebean does not instantiate @Embedded objects if those do not contain basic datatypes (int, ...
0
votes
2answers
83 views
check youtube video is embeddable <yt:noembed> via xml
I have following link http://gdata.youtube.com/feeds/api/videos/tYMYv1zsAxE and it return an xml file in which is located noembed tag in case the video is not embeddable.
i want to create a loop on ...
2
votes
0answers
196 views
Hibernate: exception when using embeddable in HQL query
I've got a shopping application with customers. Those customers have a cart containing products. Here's the (simplified) mapping with embeddables I used:
@Entity
class Customer {
@Embedded
...
0
votes
1answer
658 views
JPA / Hibernate OneToMany Mapping, using a composite PrimaryKey
im currently strugling with the right mapping annotations for a szenario using a composite Primary Key Class. First, what i am trying to achieve in words:
I have 2 classes: group and FieldAccessRule. ...
0
votes
2answers
341 views
Use criteria to query embeddable object
I'm using Toplink Grid(Eclipselink) as the my JPA implementation framework.
I met a a exception as below while I tried to use Criteria to query a Embeddable object:
Exception [EclipseLink-6119] ...
0
votes
1answer
281 views
JPQL NamedQuery: Access attribute of an @Embeddable class from an @ElementCollection reference
The follwing named query
<named-query name="fix.getByProblem">
<query>
SELECT f
FROM Fix f JOIN f.solved s
WHERE s.id IN :ids
...
0
votes
0answers
122 views
EclipseLink Mapping Map<Enum, Embeddable> maps
I have the following classes:
@Embeddable
class A {
...
}
@Entity
class B {
...
@MapKeyEnumerated(EnumType.STRING)
@MapKeyClass(MyEnum.class)
@ElementCollection
...
0
votes
0answers
118 views
Hibernate: Avoid binding null to parameter in @Embeddable attribute
Hibernate scenario:
@Embeddable
public class CompositeKey...{
private String keyPart1;
private String keyPart2;
}
public class Entity{
@Embedded
private CompositeKey cKey;
...
}
Now ...
0
votes
1answer
377 views
Embeddable with custom UserType used twice in entity
I'm using @Embeddable REmbeddedReference twice in my entity RTask. This embeddable contains QName property which type is defined as org.hibernate.usertype.UserType.
@Embeddable
public class ...
1
vote
1answer
175 views
Which noSQL DB is appropriate
I have an application which is receiving data for thousands (say 50,000) subjects.
Each data tuple comprises a subjectId and text data.
I am looking for an embeddable Java database which will ...
1
vote
1answer
659 views
Embeddable EJBContainer and JBoss 7.1.1.Final
Has anyone been able to get EJBContainer.createEJBContainer() to work with JBoss 7.1.1.Final?
Running the following code as a JUnit test results in NullPointerException!
public class ...
6
votes
1answer
190 views
Hibernate swap out embeddable class for migrating existing data
I'm at a loss here, and perhaps it's something obvious because my Hibernate expertise is weaker than other areas.
In legacy code there is a Hibernate @Entity class Foo. One of the its properties is ...
3
votes
1answer
2k views
Foreign key mapping inside Embeddable class
I am using eclipselink for JPA. I have an entity, which has a composite key fabricated out of two fields. Following is my Embeddable primary key class' fields(members).
@Embeddable
public ...
0
votes
1answer
144 views
PHP Easily embeddable web statistics engine
I'm developing a content management system and i'd like to embed a web statistics engine ( views, visitors, unique visitors per date, and so on ) into my backend panel, showing reports inside my ...
0
votes
1answer
3k views
Nested embeddable - AttributeOverride for embeddable within embeddable
I have class Money which is an @Embeddable
@Embeddable
public class Money implements Serializable, Comparable<Money> {
@Column(name = "amount", precision = 15, scale = 2)
private ...
0
votes
1answer
824 views
JPA2: Can we use multiple @ElementCollection in an Entity?
Here is the stripped down version of my code:
@Entity
public class Item implements Serializable{
@Id
@GeneratedValue
private long id;
@ElementCollection(fetch=FetchType.EAGER ...
0
votes
1answer
608 views
JPA, Hibernate: Composite Key with associations. Why loading but not saving?
I'm trying to map 3 entities: Question, Answer and QuestionDisplayRule. Question has many Answers and many QuestionDisplayRules each of which belong to one Question. QuestionDisplayRule has one ...
2
votes
1answer
2k views
JPA: Query an embeddable List inside an entity
I am trying to "extract" Embeddable classes based on some criterias from a list in an Entity. Either with the help of JPQL or Criteria API. I am not a pro at this, so please help me out. Been googling ...
1
vote
0answers
371 views
Getting ClassCastException while saving entity which has embeddable class with enumerated fields
Server: JBoss6
Technology: JPA 2, EJB 3.1
I have an entity which has an embeddable class that encapsulates a common group of fields, to be used many times on the same entity, as shown bellow:
...
2
votes
1answer
296 views
Extending Embeddable class in JPA
I have an embeddable class ABC extended from another embeddable class XYZ. ABC's object is embedded in an entity. The table corresponding to the entity contains only elements of ABC and not of XYZ. ...
0
votes
1answer
121 views
Map User, Address, Country with DDD
I'm trying to create an ecommerce website using spring, hibernate and for the first time following DDD.
At the moment the situation is this. I'm considering the object USER as aggregate root which ...
0
votes
1answer
439 views
Is it possible to develop a hybrid (native + html5) app for Blackberry?
On Android, since the browser is embeddable inside a native screen, we can build hybrid apps with some screens as native and some with an embedded Webview. Is it possible to embed the browser inside a ...
2
votes
1answer
198 views
Hibernate: getters/setters duplicated with EmbeddedIds?
I have a table with three columns, "A", "B" and "C". Two of these columns (A and B) are the composite primary key for the table. I've written a Java class for this table and I'm using Hibernate to map ...
2
votes
2answers
278 views
Open-Source C or C++ Embedded relational database (copy source to deploy)
I have a cross platform project where the client gets the code, but doesn't want to resolve any dependencies. The requirements are best solved with a relational database, so it seems I need to copy ...
1
vote
2answers
818 views
Embeddable abstract class with JPA (+Hibernate)
I am trying to implement this JPA model:
Class Owner is an Entity. It has @Embedded instance of class AbstractParent.
Class AbstractParent is @Embeddable. It is an abstract class, and this class
has ...
4
votes
4answers
272 views
Embeddable VM runtime for ANSI C
I'm looking for a Virtual Machine runtime environment that is embeddable in any ANSI C code.
I have designed a syntax for a functional language that looks a lot like a stripped version of ...
0
votes
1answer
1k views
hibernate, query on embeddable object
Is it possible to query on Embeddable object from separate query?
E.g., we have
@Entity
class Person{
...
@Embedded
private Address address;
...
}
@Embeddable
class Address{
private String street;
...
3
votes
1answer
2k views
How to build my own embeddable audio player // not pure flash
We are currently developing a community based on user-generated audio content. The base technology for playing audio will be Soundmanager 2 is HTML5. We created our own player interface based on the ...
1
vote
1answer
696 views
Hibernate Embedded/Embeddable not null exception
In the owning class:
...
@Embedded
private LatLon location;
...
In the referenced class:
@Embeddable
public class LatLon implements Serializable {
private double lat;
private double lon;
...
3
votes
0answers
229 views
Does the JBoss embeddable/modular server still exists?
While following along some examples about EJB 3.0 given in the book "Java Persistence with Hibernate" from 2007 I was told to
Go to http://jboss.com/products/ejb3, download the modular embeddable
...
0
votes
2answers
262 views
How hibernate store embeddable obj
kind of stupid question but i didn't find the answer anywhere. How @Embeddable object is stored in the database, is it kind of OneToOne with FK or... For example if i have:
@Entity
public class User ...
0
votes
1answer
571 views
Hibernate Criteria API orderBy and Embedded element
Lets say I have a Report entity. Inside it there is @Embeddable ReportPeriod which has Integer month and Integer year fields. When i try to sort my Report report by its ReportPeriod reportPeriod it ...
9
votes
4answers
4k views
Java ETL: hard to find a suitable one [closed]
I'm looking for an embeddable Java ETL, i.e., an Extract Transform Load engine that can be called from Java code.
I'm finding it surprisingly hard to find a suitable one.
I'm mainly looking at ...
1
vote
1answer
316 views
Mapping exception in hibernate with CollectionOfElements
I am trying to get this mapping to work, but I get this strange exception message
Could not determine type for: foo.ProcessUser, at table: ProcessUser_onetimeCodes, for columns: ...
1
vote
1answer
2k views
embeddable widgets using jquery and ASP.NET MVC
I need some advice for the best approach to use in developing embeddable widgets that my site users could use to show our content on their site.
Let's say we have some content which uses a jquery ...
1
vote
2answers
608 views
How to make embeddable code in ASP.Net
you must have seen widgets like code which people place inside their HTML and it starts showing a small widget in there, how we can we do it in ASP.net, for example if i want to show some specific ...
-1
votes
2answers
181 views
Looking for a good embeddable discussion thread [closed]
I'd like to embed a discussion thread on a website. Doesn't need to be anything complicated, just need to be able to post comments. Threading would be nice, but isn't strictly necessary. Google Wave ...
5
votes
2answers
4k views
Can I make an embedded Hibernate entity non-nullable?
What I want:
@Embedded(nullable = false)
private Direito direito;
However, as you know there's no such attribute to @Embeddable.
Is there a correct way to do this? I don't want workarounds.

