leeoo / firefly

Automatically exported from code.google.com/p/firefly
0 stars 0 forks source link

属性的ioc #2

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
1.为什么注入属性不采用spring的@Autowired,我认为这种注解用起�
��最方便
2.有没有考虑做数据库的事务,如spring的注解事务?

Original issue reported on code.google.com by zhangsh...@163.com on 12 Jan 2011 at 10:56

GoogleCodeExporter commented 9 years ago
firefly里面叫@Inject,这个注释不填写任何参数作用就和@Autowire
d一样,是使用类型自动注入 的。

比如
@Inject
private BooService booService;

如果加了参数就是用组件id注入
@Inject("xxxService")
private XxxService xxxService;

Original comment by balduli...@gmail.com on 2 Feb 2011 at 5:11