Java EE
This page documents the results from the Java EE whiteboard where all Javapolis 2006 participants were encouraged to participate with their ideas.
More annotations
Java EE brings annotations to the business layer, what about the web-tier?
Servlet:
@Servlet
public class MyServlet {
...
}
JSF:
@Controller
public class MyController {
@Action(
@Navigate success="mypage.jsp",
@Navigate fail="error.jsp")
if (i < 0)
return "success";
else
return "fail";
}
There were no comments on this topic.