读书人

造了个车轮更新2.0版了:)firefly一

发布时间: 2012-11-12 12:31:58 作者: rapoo

造了个轮子,更新2.0版了:-),firefly一站式java web框架
特性

firefly是一个高性能的web开发框架,Template engine,IOC、MVC framework,HTTP Server,Common tools,Log,Json parser等模块一应俱全。使用简单,无侵入。仅仅依赖jdk,完全不会引入第三方库。高性能,在我的macbook上轻松达到3W+ req/s完全开源,源码地址主页

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主页

读书人网 >Web前端

热点推荐