0
votes
1answer
914 views
How JPA (Hibernate) deal with transaction when fetching Object from database
Hi all,
I'm currently developping an application in java using Hibernate as a persistence manager and JPA as an abstraction of the persistence manage hibernate.
I'd like to know th …
0
votes
1answer
517 views
Advanced Java Generics question: why do we need to specify redundant information
Hi,
I've got some generic class for my JPA model POJO that goes like this:
public interface Identifiable<PK extends Serializable> {
PK getUniqueId();
}
public int …
1
vote
2answers
191 views
How to open a file with the default associated program
How do I open a file with the default associated program in Java? (for example a movie file)
…
1
vote
2answers
166 views
How to determine if a file will be logically moved or physically moved.
The facts:
When a file is moved, there's two possibilities:
The source and destination file are on the same partition and only the file system index is update …
2
votes
How do I use Java to read from a file that is actively being written?
You might also take a look at java channel for locking a part of a file.
http://java.sun.co …
0
votes
Comparing hibernate-mapped dates?
Personnaly, I truncate every date I receive in my POJO object with the Apache commons lang package class named DateUtils.
See [Apache commons site][1]
[1]: …
0
votes
UI diagram layout
Any uml tool should do the work
Take a look at UMLet or NetBeans as UML editors made …
0
votes
Correct approach to Properties.
Approache 2 is defenetly better.
Anyway, you should not let other class search through config object. You should injet config taken in the config object ouside the object.
Take a l …
0
votes
1
vote
Using generic parameters with static compareObject method
Here's what you are looking for:
public static <T extends Comparable<T>> int compareObject(T o1, T o2) {
if ((o1 instanceof String) && (o2 instanceof String))
…
0
votes
Hibernate JPA Sequence (non-Id)
I've been in a situation like you (JPA/Hibernate sequence for non @Id field) and I ended up creating a trigger in my db schema that add a unique sequence number on insert. I just never got it to wo …
1
vote
How can I stop a Java while loop from eating >50% of my CPU!?
While yes, you could do a
Thread.sleep(50)
like the accepted answer suggest, you could also call
Thread.sleep(0)
This will tell …
1
vote
Are Windows Logo (TM) Certified applications harder to write in Java?
For the look and feel, call this at the beggining of your main() function:
log.info("Setting java look and feel");
try {
UIManager.setLookAndFeel(UIMana …
2
votes
How to determine if a file will be logically moved or physically moved.
Ok I'm on something :)
Using JNA I am able to call the Win32 API (and *nix API too) from jav …
2
votes
Add a dependency in Maven
You can also specify a dependency not in a maven repository. Could be usefull when no central maven repository for your team exist or if you have a …
