精华帖 (1) :: 良好帖 (7) :: 新手帖 (0) :: 隐藏帖 (0)
|
|||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
作者 | 正文 | ||||||||||||||||||||
发表时间:2011-01-03
最后修改:2011-01-03
现在的开源框架都是大而全,动辄xxMB的jar包,感觉用不了那么多的功能,而且性能有些不尽如人意。所以还是自己造个轮子吧。
firefly的特性
firefly的使用风格类似Spring3,具体可以看 http://code.google.com/p/firefly/wiki/guide
代码已经发布到 google code ,有兴趣的同学可以一起来开发 http://code.google.com/p/firefly/
测试环境
用例1测试报告¶往JSP打印“你好 firefly!”
用例1往JSP打印“你好 firefly!” JSP代码
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Strict//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>firefly</title> </head> <body> ${hello} </body> </html>
firefly测试代码
@RequestMapping(value = "/hello") public String index(HttpServletRequest request) { request.setAttribute("hello", "你好 firefly!"); return "/index.jsp"; }
Servlet测试代码
@Override public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { request.setAttribute("hello", "你好 firefly!"); request.getRequestDispatcher("/WEB-INF/page/index.jsp").forward( request, response); }
Spring3MVC测试代码
@RequestMapping(value="/spring", method=RequestMethod.GET) public String index(HttpServletRequest request) { request.setAttribute("hello", "你好 firefly!"); return "/index"; }
Struts2测试代码
public String execute() throws Exception { setMessage("你好 firefly!"); return SUCCESS; }
声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|||||||||||||||||||||
返回顶楼 | |||||||||||||||||||||
发表时间:2011-01-03
最后修改:2011-02-15
firefly的使用的例子,帖子里面实在是贴不下了,直接上传pdf文档好了,jar包有打包好的在google code上面
|
|||||||||||||||||||||
返回顶楼 | |||||||||||||||||||||
发表时间:2011-01-03
最后修改:2011-01-03
Your search did not generate any results.
You may want to remove some terms from your query. 好像不可以下载,没有打好的包吗? |
|||||||||||||||||||||
返回顶楼 | |||||||||||||||||||||
发表时间:2011-01-03
最后修改:2011-02-15
peterwei 写道
Your search did not generate any results.
You may want to remove some terms from your query. 好像不可以下载,没有打好的包吗?
svn地址: http://firefly.googlecode.com/svn/trunk/firefly-core |
|||||||||||||||||||||
返回顶楼 | |||||||||||||||||||||
发表时间:2011-01-03
最后修改:2011-01-03
目前还准备新加入一些功能,追加一些有用的前端控件,json输出部分也准备自己开发高性能的json输出,摆脱对jackson的依赖,有兴趣的同学,希望也一起来参与开发吧,firefly的主旨就是追求最高的性能,保持精简。
|
|||||||||||||||||||||
返回顶楼 | |||||||||||||||||||||
发表时间:2011-01-03
看起来灰常不错啊。
是得迁下来看看。 |
|||||||||||||||||||||
返回顶楼 | |||||||||||||||||||||
发表时间:2011-01-03
有服务器端的验证么?
|
|||||||||||||||||||||
返回顶楼 | |||||||||||||||||||||
发表时间:2011-01-03
godson_2003 写道 有服务器端的验证么?
这个可以考虑增加^_^,还准备增加像Spring3那样的请求参数自动包装到javabean的功能,这个功能要大量的反射,对性能有多大的影响还不得而知,要尽量保持最高的性能 |
|||||||||||||||||||||
返回顶楼 | |||||||||||||||||||||
发表时间:2011-01-03
支持下 感觉有了服务器段验证 就可以用了
|
|||||||||||||||||||||
返回顶楼 | |||||||||||||||||||||
发表时间:2011-01-03
有什么优势 ?
|
|||||||||||||||||||||
返回顶楼 | |||||||||||||||||||||