INCLUDE_DATA

Tag Archives: Java

Wicket Homepage Redirecting

With the Wicket Java Web framework where a lot of magic happens behind the scenes, and almost no XML needs to be configured. Most of it is done with Java. It has a lot of pretty cool features. I just came across this one.
In the init setup of your class that extends WebApplication, you can [...]

Static Java List Instantiation

But it recently occurred to me that with variable-length methods, I can simply call asList like this:

List<String> strings = Arrays.asList(foo","bar");