here's a big productivity boost if you add an Alt + F3 key binding to the Open Implementation feature,
and just use F3 to go to interfaces, and Alt + F3 to go to implementations.
OR
Press Ctrl + T on the method name (rather than F3)
[Read More]
Pirates arrrr
Piracy is typically an act of robbery or criminal violence at sea. The term can include acts committed on land, in the air, or in other major bodies of water or on a shore. It does not normally include crimes committed against persons traveling on the same vessel as the...
[Read More]
First post!
jquery easy ui right to left bug
jquery easy ui bug in tree rtl
add this style to easyui-rtl.css‬
.tree-node{
direction:rtl;
}
How does @RequestParam in Spring handle Optional?
@RequestMapping("foo")@ResponseBodypublic String foo(@RequestParam(required =false) final Optional name){ return"name: "+(name ==null?"null": name.get());}