Search Results

6
votes
6answers
626 views

Java Web Service framework/library, which is a better one and why ?

Currently I am evaluating number of web service frameworks in Java. I need web service framework that will help me to expose some functionality of existent application running on JBoss, The applica …
0
votes
1answer
104 views

JavaBeans Activation Framework: is it worth learning?

Recently I've stumbled upon a class named javax.activation.DataHandler. But while reading the javadoc of JDK6, I was not able to understand the aim and rationale …
2
votes

Hibernate mapping a composite key with null values

No. Primary keys can not be null. …
0
votes

Hibernate mapping a composite key with null values

For composite keys (assumed that database allows nulls in PKs) you can have maximum number_of_cols^2 - 1 entries containing nulls, (for example for composite key of 2 columns you can have 3 rows ha …
0
votes

Which free and open source frameworks would you recommend for replacing which aspect of ATG

Hibernate for database access Spring for integration GWT or good old JSP for presentation layer Jboss is suitable for large applications requiring clustering and more sophisticated deployme …
1
vote

How to choose the max thread count for an HTTP servlet container?

No there is not. Keep you number of threads limited and under control so you not exceed system resources, Java's limit is usually around 100-200 live threads. Good way to do it is by using …
0
votes

How do I set an Application’s Icon Globally in Swing?

Extend the JDialog class (for example name it MyDialog) and set the icon in constructor. Then all dialogs should extend your implementation (MyDialog). …
4
votes

Consequences of running a Java Class file on different JREs?

Java classes are forward compatible , e.g. classes generated using 1.5 compiler will be loaded and executed successfully without any problems on JRE 1.6. Generally …
0
votes

Serializing Date in Java

You don't need default constructor (empty) in order to serialize/deserialize date (either java.sql.Date or java.util.Date). During deserialization constructor is not called but attributes of object …
1
vote

Does it matter which vendor’s JDK you build with?

JDKs are compiling your code to a bytecode and not directly to machine code. Is expected that compilers of different vendors generating cross-vendor compatible cod …
0
votes

Code compiling in eclipse but not on command line

if you are on windows write set JAVA_HOME=C:\Program Files.... path to JDK the path should be the jdk path not jre on my PC is C:\Program Files\Java\jdk1.6.0_07 …
0
votes

Do you use design marker interfaces to document your Java code?

Let's put things in some order. Suppose that your class implements Immutable interface, which provides semantic to compiler or some tool invoked prior to compiler that the instance will be never ch …
4
votes

Avoid synchronized(this) in Java?

While you are using synchronized(this) you are using the class instance as a lock itself. This means that while lock is acquired by thread 1 the thread 2 should wait Suppose the following c …