Search Results

0
votes

Best resources to prepare for the “Spring Framework Certification”

It is good idea to start from "Spring in Action" (Manning) …
0
votes

Why doesn’t Java have a way of specifying unescaped String literals?

I think this question is like: "Why java is not indentation-sensitive like Python?" Mentioned syntax is a sugar, but it is redundant (superfluous). …
-1
votes

Where do I find a standard Trie based map implementation in Java?

What you need is org.apache.commons.collections.FastTreeMap , I think. …
2
votes

How can I calculate the difference between two ArrayLists?

You already have the right answer. And if you want to make more complicated and interesting operations between Lists (collections) use …
1
vote

how to execute .sql script file using JDBC

You should be able to parse SQL file into statments. And run a single statment a time. If you know that your file consists of simple insert/update/delete statements you can use a semicolon as state …
0
votes

Is var-args can be used as method argument only???

Example: public class VargArgsExample { public static void printArgs(long requiredLongArgument, String... notRequiredStringArray) { System.out.println(requiredLongArgument); …
0
votes

System properties can’t be resolved in Spring XML using Maven

May be you should use identical variable names? I mean that you pass dataDir, but expect baseDir. Am I wrong? …
0
votes

AJAX (prototype/java) getting partial status updates during execution

You may like DWR. With help of DWR you could make async requests to the server to get information about the progress of the …
0
votes

More advanced Java Course or C?

You already have a Java-basis. It would be great to get familiar with C. This knowledge will open for you new horizonts so you'll be able to decide what to do next - turn back and go deeper in Java …
0
votes

Can I use throws in constructor?

In general it is a good idea to have only simple logic in your constructor (for example setting private fields with arguments values). And set up your objects with other special "assemblers", "prep …
0
votes

Is the implements clause also inheritable?

Sure. B is also Runnable due to B's parent (A) is Runnable. …