Tagged Questions
The embeddable tag has no wiki summary.
5
votes
3answers
589 views
Java ETL: hard to find a suitable one
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 ...
4
votes
2answers
2k 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.
3
votes
2answers
96 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 ...
2
votes
1answer
43 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
94 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 ...
2
votes
1answer
299 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:
http://www.schillmania.com/projects/soundmanager2/ .
SM2 ...
2
votes
0answers
100 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
...
1
vote
1answer
47 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. ...
1
vote
1answer
269 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;
...
1
vote
1answer
180 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
1k 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
321 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
vote
2answers
96 views
Looking for a good embeddable discussion thread
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 ...
0
votes
0answers
36 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:
...
0
votes
1answer
47 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
32 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 ...
0
votes
2answers
185 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 ...
0
votes
1answer
162 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;
...
0
votes
0answers
285 views
Hibernate ElementCollection with List<Embeddable>: Wrong FETCH?
Dear All,
I have the following problem: from one side I need to have a list of Embeddable, and on the other side i need to persist it with fetchType.EAGER. I am using Hibernate 3.5.4-Final and ...
0
votes
2answers
87 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
282 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 ...
0
votes
1answer
34 views
Embeddable text are where users can insert the html
I want to know
is there a way to have a text area which allows html where users can paste their html codes ?