3
votes
2answers
2k views
Which anotation should I use: @IdClass or @EmbeddedId
The JPA (Java Persistence API) specification has 2 different ways to specify entity composite keys: @IdClass and @EmbeddedId.
I'm using both annotations on my mapped entities, but it turns …
6
votes
4answers
1k views
Java - C-Like Fork?
Is it possible to do a "C like" fork in java, using an new independent jvm process ?
How?
…
0
votes
5answers
319 views
Insert fail then update OR Load and then decide if insert or update.
I have a webservice in java that receives a list of information to be inserted or updated in a database. I don't know which one is to insert or update.
Which one is the best approach to abt …
1
vote
2answers
909 views
Cannot Serialize/Deserialize ArrayList
I'm trying to serialize and deserialize an array list with a object inside:
HairBirt param = new HairBirt();
param.setName("name");
param.setValue(2.3f);
HairBirt param2 = new Hair …
1
vote
4answers
58 views
Weird difference between new Date() and FileCreation date.
I'm running some test to prove a concept and i just wrote this code and found a weird situation:
public class Test {
public static void main(String[] args) {
Date now = new D …
1
vote
Reflecting method’s actions in Java
Aspect J will solve your problem.
Try to define a pointcut like this:
pointcut profilling(): execution(public * …
5
votes
In Java, how do I dynamically determine the type of an array?
Just Write
Class ofArray = o.getClass().getComponentType();
…
1
vote
How to use Hibernate @Any-related annotations?
The @Any annotation defines a polymorphic association to classes from multiple tables. This type of mapping
always requires more than one column. The first column holds the type of the associated e …
8
votes
How to convert string result of enum with overridden toString() back to enum?
The best and simple way to do it is like this:
public enum AgeRange {
A18TO23 ("18-23"),
A24TO29 ("24-29"),
A30TO35("30-35");
privat …
1
vote
Mandatory cloneable interface in Java
You don't need to redefine the clone method on the interface Modifiable.
Check the documentation: h …
3
votes
How to split a huge zip file into multiple volumes?
Check: http://saloon.javaranch.com/cgi-bin/ubb/ultimatebb.cgi?ubb=get_topic&f …
0
votes
JPA Composite Key + Sequence
Try like this:
@TableGenerator(name = "canonicalKeys", allocationSize = 1, initialValue = 1)
@GeneratedValue(strategy = GenerationType.TABLE, generator = "canonicalKeys")
@Column(na …
7
votes
Library that subverts java access control and lets me access private member variables ?
In most of the cases java reflection solves the problem:
Example:
…
1
vote
What are your thoughts on method scoped constants?
The reason why you can define a final variable at a class level or method (local) level it's because you can override the global static constant inside the (local) method.
Example:
…
1
vote
how to convert tis-620 string to utf-8 string in java
import java.nio.ByteBuffer
import java.nio.CharBuffer
....
public static ByteBuffer toByteBuffer(String content, String encode) {
Charset charset = …
