Search Results

2
votes
5answers
157 views

Distributed Caching

I am looking for a java distributed caching solution. We would like features likes: Distributed Auto-Discovery Redundancy Non-Centralized We …
0
votes

What is the meaning of the type safety warning in certain Java generics casts?

If you want to read more information about Generics and their commonly known uselessness I'd suggest you go to the to this …
0
votes

CSV File to XML

There is nothing I know of that can do this without you at least writing a little bit of code... You will need 2 separate library: A CSV Parser Framework An XML Serializ …
6
votes

Which Build-/Configuration Management Tool?

Java Maven2 and/or Ant Ant is great, it is the de-facto standard for Java Projects (Honestly, everybody used it once in their Java Life) but it does have a grea …
0
votes

IllegalArgumentException or NullPointerException for a null parameter?

The accepted practice if to use the IllegalArgumentException( String message ) to declare a parameter to be invalid and give as much detail as possible... So to say that a parameters was f …
0
votes

Where should a veteran C programmer start in order to master Java ?

Any C/C++ Programmer that have to switch to Java will actually find the language quite natural (especially if you happens to understand Object-Oriented Programming Concepts). However, I wou …
1
vote

Which Java DOM Wrapper is the Best or Most Popular?

It all depends on the feature set. If you want to benefit from an XSL Transformation Engine (Like Xalan) or an XPath Engine (Like Jaxen or Saxon) I would recommend sticking to the more popular fram …
0
votes

Is Java pass by reference?

If you create a method which receives an int for example and change the value within the method, the caller will not see the value you've just assigned. int value = 1; invokeSomeMet …
3
votes

How to start learning JAVA for use with Oracle RDBMS?

You're question is a little bit too vague in order to give a proper answer... If you plan to query the Oracle Database from an External Java Program (Either within a Swing Application or a …
1
vote

Template Engines for Spring Framework

It all goes down to what you need. For my current project, I am making an heavy use of FreeMarker because it was the framework that was tailored for the job I had to do. There is no silver bullets: …