造了个轮子,更新2.0版了:-),firefly一站式java web框架
特性
http://www.fireflysource.com
?
github:?https://github.com/hypercube1024/firefly
google code:?http://code.google.com/p/firefly/
?
HelloWorld创建Controller@Controllerpublic class IndexController {@RequestMapping(value = "/document/?/?")public View document(HttpServletRequest request, @PathVariable String[] args) {request.setAttribute("info", args);return new TemplateView("/index.html");}}创建模版<!DOCTYPE html><html><body>${info[0]},${info[1]}</body></html>创建firefly配置<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://code.google.com/p/firefly/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://code.google.com/p/firefly/beans http://firefly.googlecode.com/files/beans.xsd"><component-scan base-package="com.firefly"/><mvc view-path="/template" view-encoding="UTF-8"/></beans>
?
创建Log配置firefly-system=INFO,/Users/qiupengtao/develop/logsfirefly-access=INFO,/Users/qiupengtao/develop/logs?创建Main函数
public class Bootstrap {public static void main(String[] args) throws Throwable {String projectHome = new File(Bootstrap.class.getResource("/").toURI()).getParent();String serverHome = new File(projectHome, "/page").getAbsolutePath();ServerBootstrap.start(serverHome, "localhost", 6655);}}?启动main函数,访问 http://localhost:6655/document/pengpeng/1234,页面就会显示出pengpeng, 1234。
Template engine,IOC、MVC framework,HTTP Server,Common tools,Log,Json parser等模块具体使用可光临firefly主页