造了个轮子,更新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

@Controller
public 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/logs
firefly-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主页

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值