Easy Java Websites (EJW)是一个基于Java Servlet实现的MVC Web应用程序开发框架。它专门为能够以非常简单的方式来开发Web应用程序而设计。EJW简单到可以在几分钟内学会。
示例代码:
public class _HelloWorld_ extends RequestHandler { public String _hello_ () { getServerInterface().addViewObject(" _helloWorld_ ", "Hello World"); return "/WEB-INF/helloWorld.jsp"; } } <div align="center"> <h3>Hello, This Is A Simple "Hello World" Example.</h3> <h2>${ _helloWorld_ }</h2> </div>