public class FeatureController {
static public final String DATA_KEY = "data";
@RequestMapping(value = "index", method = RequestMethod.GET)
public String showIndex(Model model) {
FeatureFactory factory = new FeatureFactory(new J2eeConfig());
try {
model.addAttribute("list", factory.getAll());
return "/WEB-INF/website/features/index.jsp";
} finally {