`
drinkjava2
  • 浏览: 41790 次
  • 性别: Icon_minigender_1
  • 来自: 南京
社区版块
存档分类
最新评论

征求IOC/AOP微形开源项目jBeanBox合作者

阅读更多
这是一个微形开源项目,目标是使用尽可能少的Java类实现全功能的IOC和AOP功能,有兴趣参加的朋友可以跟贴,贡献者将列入作者名单,谢谢!
项目的目的是取消XML配置文件而用纯Java类代替,Spring本身越来越臃肿,替我们自做主张集成了自以为最好的一条龙服务,这本身没什么,可以自取所需。 但是它最大问题是采用XML静态配置,导致需要动态修改配置功能时灵活性不够,注解的引入没有根本性变化。 jBeanBox项目只实现最基本的IOC和AOP功能以满足功能单一原则。用尽可能少的源码实现,基本思路可参见我的另一贴"JSP页面布局工具jWebBox升级到2.0版" http://www.iteye.com/topic/1143195, 利用Java类本身作为配置文件,来获得免学习、高灵活性、高可定制性、支持UML图、类可继承、类名检查、类名重构、代码提示等优点,且得益于对象化和微型化设计(尽可能不要超过10个Java类),本IOC/AOP工具有支持动态更改配置、启动快速、适合移植到移动开发等特点。 项目采用BSD协议,项目地址为https://sourceforge.net/projects/jbeanbox/
    (补充一下,这两天研究Spring才发现Spring3.0已经有了用JAVA类代替XML配置的做法,实现了编译器类名检查,但是仔细一看,晕倒,它使用了一种特殊的JAVA类,又引入了四个新的注解,注解加JAVA,不伦不类。配置类不能继承重用、而且最大问题是把语句写死在Java配置类里,如果运行期要动态生成、修改配置类怎么办? 看来三种配置方式还不够,将来Spring还会增加第四种配置方式。 于2016年2月13日)
    (这两天没人跟贴就在原贴基础上再更新一遍,第一版jBeanBox已上传到项目目录https://sourceforge.net/projects/jbeanbox/下,有兴趣的可以当下来看一看源码,目前源码220行,已实现了设值注入、构造器注入、静态工厂注入、实例工厂注入四种IOC,因时间关系还只是一个框架,但用例部分已经全部跑通,感觉比XML配置方便多了,调试时经常要变动类名,利用重构功能Eclipse自动全部更新,不用担心类名拼写出错了,但是方法名拼错就没办法了,JDK1.8以下没有方法变量支持。 目前实现了IOC所有注入方式,只不过都是多例的,还要改成默认单例的,要和不擅长的多线程和单例注册表打交道了,AOP功能也不太了解,有时间再加上去。个人感觉用纯Java代理Box类代替XML作为配置文件可以成为一种设计模式,对简化编程非常有成效,要知道Spring IOC和AOP内核一共有700多个类3.6M,要压缩成只有一个类(估计项目最终完成后不超过1000行)是个什么概念! 源码写的很烂,没加注释,但好在目前只有两百行,读起来还是很容易的。 于2016年2月15日)

以下是对此项目的描述,用例部分已调试通过(目前是多例的),AOP功能如何还待添加。
jBeanBox is a micro-scale but full functional IOC & AOP tool, it has no XML files(Use "BeanBox" classes to replace), no annotations. 1 Java class do all the jobs Spring IOC/AOP core did. jBeanBox is an open source software follows BSD license.

Why jBeanBox?
Current IOC/AOP frameworks problem:
1) Spring, HiveMind and other IOC/AOP tools use XML as configuration file: XML is hard to write and maintenance, hard to present complicated features like extends, map, sets injection, and not flexible to create/change configuration in run-time.
   (I just notice from Spring3.0, Spring imported a kind of special JAVA class to replace XML, but that's a wired way, Java mixed up with annotations, it's not OO designed, and can not create/modify configuration at run time. )
2) Guice and other IOC/AOP tools depend on annotation: write annotation in bean class is an invasion; IOC/AOP tool should no need to change anything in bean classes.
3) PicoContainer, no AOP function, Bean configurations cannot be re-used.
jBeanBox is lightest IOC/AOP tool, which function only focus on IOC/AOP. It's small size but full functional, source code are short and easy to understand. It’s ideal to mobile device developing, and of cause, can use anywhere where an IOC/AOP tool needed.


Key features of jBeanBox:
1) Simple, function only focuses on IOC and AOP. No XML files, no any annotations, use pure Java classes to replace XML, these Java classes be called "BeanBox" (similar like "Box" concept in another open source project "jWebBox", it looks like if XML configurations become complicated, use a "Box" to replace it often make things simple and flexible.)
2) As using Java class to store configurations, IDE can help to find class name spelling mistake, UML tool can used to draw bean relationship graph, Bean Boxes can organized in packages according its function.
3) No conflict with other bean containers, it can be used as foundation of whole project or only to manage few Beans in application.
4) Friend to test, as configurations are stored in Java BeanBox tree, only Beans included in this tree will be created and injected, so it starts quick. It’s also friend to team work, user A and user B can have their own BeanBoxes/Beans and test it separately, after tested just copy these beans together.
5) Bean configurations (BeanBox classes) are created dynamically, it's easy to modify or create configurations at run-time. For example, change bean create method from singleton to prototype, inject different bean instance, add or remove AOP pointcuts at run-time.
6) Small size, only 1 java file (and 2 .jar libs) needed, ideal for mobile device applications.
7) jBeanBox tool only implements IOC and AOP function, no intend to add more functions like Transactions, Hibernate, MVC support. User should assembly these functions in project by themselves or to find a one-site solution project at other places.

How to use it:
This project be packaged as .war file, you can import it into Eclipse as a web project to see the source code, and run MainTest.java to see the test result, why packed in .war format is because there are 2 lib files "asm-3.x.x.jar" and "cglib-2.x.jar" are necessary, it's convenient to import to Eclipse. And you can also download new version of asm-3.x.x.jar and cglib-2.x.jar from their project homepages.

Typically a project using jBeanBox, need prepare below files:

1. Your bean or interface classes, for example, below 3 bean classes and 1 factory class:
public class Company {
private String name;
//getter & setter......
}

public class OrderItem {
private String itemName;
private Double price;
//getter & setter......

public OrderItem(String itemName, Double price) {
this.itemName = itemName;
this.price = price;
}
public void printItemInfo() {
System.out.println(itemName + "  $" + price);
}
}

public class Order {
private String orderNO;
private OrderItem orderItem1, orderItem2, orderItem3;
private Company company;

//getter & setter......
public void printALlItems() {
System.out.println("OrderNO:" + orderNO);
System.out.println("Company:" + company.getName());
orderItem1.printItemInfo();
orderItem2.printItemInfo();
orderItem3.printItemInfo();
}
}

public class OrderItemFactory {
private Boolean hidePrice;

public OrderItemFactory(Boolean hidePrice) {
this.hidePrice = hidePrice;
}

public static OrderItem createOrderItem(String itemName, Double price) {
return new OrderItem(itemName, price);
}

public OrderItem createOrderItem2(String itemName, Double price) {
if (hidePrice)return new OrderItem(itemName, 0.0);
        else return new OrderItem(itemName, price);
}
}


2. Configuration classes (to replace XML):
class OrderTemplate extends BeanBox {
{   this.setBeanClass(Order.class);
this.setProperty("orderNO", "PO#20160214");// setter inject value
this.setProperty("company", new BeanBox(Company.class).setProperty("name", "Dog Shop"));// setter inject bean
this.setProperty("orderItem1", new BeanBox(OrderItem.class, new Object[] { "Dog1", 77.99 }));// setter & constructor inject
this.setStaticFactory("orderItem2", OrderItemFactory.class, "createOrderItem", new Object[] { "Dog2", 88.99 });// static factory inject
BeanBox factory = new BeanBox(OrderItemFactory.class, new Object[] { true });// constructor inject
this.setInstanceFactory("orderItem3", factory, "createOrderItem2", new Object[] { "Dog3", 99.99 });// instance factory inject
}
}

public class OrderBox extends OrderTemplate {
{ this.setProperty("company", ((BeanBox) getProperty("company")).setProperty("name", "Dog Store"));// modify property
}
}

3. At last, get bean instance by call getBean method:
    public static void main(String[] args) {
Order order = (Order) new OrderBox().getBean();
order.printALlItems();
    }
  
For this example, below is output result:
OrderNO:PO#20160214
Company:Dog Store
Dog1  $77.99
Dog2  $88.99
Dog3  $0.0
分享到:
评论
1 楼 sp42 2018-02-24  
   

相关推荐

    计算机网络技术个人简历.pdf

    在高级技术方面,求职者能够应用**Spring的IoC/AOP/ORM**,并了解**EJB(Enterprise JavaBeans)**和**WebService**技术,这些是企业级应用开发的重要组成部分。同时,求职者掌握了**XML**,这是一种用于数据交换的...

    计算机求职意向简历.pdf

    7.能熟练应用SpringIoC/AOP/ORM等各种技术,了解EJB及WebService技术; 8.掌握XML语言、OOA/D、UML图、CVS、Log4j,了解JavaScript、Ajax等技术; 9.掌握Socket编程,了解TCP/IP、UDP、Http、Telnet、FTP等协议。 ...

    java运维简历.pdf

    - 熟悉Spring的IoC容器和AOP切面编程,能将这些框架整合应用于项目。 5. **服务器和Tomcat**: - 熟悉在Tomcat上进行J2EE开发,了解启动流程,具备问题解决能力。 6. **操作系统**: - 基本了解Linux/Unix,能...

    java程序员面试指南PPT学习教案.pptx

    Spring的IoC/DI概念、AOP、动态代理和集成配置;UML的基本图形绘制和用例分析;设计模式的应用,如单例、工厂、观察者等。 8. **面试准备**:除了技术知识,面试官还会关注候选人的问题解决能力、沟通技巧和团队...

    基于Java SSM MySQL实现校园二手书交易平台【优质毕业设计、课程设计项目】.zip

    在本项目中,Spring作为IoC(控制反转)容器,负责组件的装配和管理,同时提供了AOP(面向切面编程)功能,用于实现如日志记录、事务管理等跨切面关注点。 2. **SpringMVC**:SpringMVC是Spring框架的一部分,专门...

    程序员简历参考模板.docx

    在开源框架方面,候选人熟悉Struts1的执行流程,了解Hibernate的关系映射和性能优化,以及Spring的IoC容器和AOP切面编程。他能在Tomcat服务器上进行J2EE开发,并具备一定的Linux/Unix基础。他还掌握了前端技术如AJAX...

    mySpring:跟着鲁班学院-周瑜老师视频做的简单Spring原始项目

    开源项目有利于促进技术交流和社区合作,也是软件开发中的一个重要趋势。 根据压缩包文件名称"mySpring-master",我们可以推断这是项目仓库的主分支,通常在Git版本控制系统中,"master"分支被视为默认的、主要的...

    架构师要做些什么 (2).pdf

    例如,Spring作为一个轻量级容器,提供了IOC和AOP特性,便于整合其他框架如Eclipse、Struts和Hibernate。而在企业级应用中,Web Part技术(如在WSS/SPS中)可以实现页面的个性化定制,增强用户体验。 总的来说,...

    最新实用JAVA工程师求职应聘个人简历模板参考范文表格可编辑.docx

    通过Spring的AOP和IoC容器,可以实现事务管理和程序解耦,提高系统的维护性。 综合以上信息,一个合格的Java工程师需要具备广泛的技术知识,良好的团队合作精神,以及丰富的项目实践经验,这样才能在竞争激烈的...

    Spring学习指南

    对于技术文档和开源项目,开放文档(OpenDoc)的方式可以促进知识的传播和协作,同时也是一种鼓励读者反馈和持续改进项目的有效途径。 综上所述,文档中提到的Spring学习指南为开发者提供了一个全面了解和掌握...

    Appress Pro Spring 5.pdf

    本书是由四位作者合作完成的:Iuliana Cosmina、Rob Harrop、Chris Schaefer 和 Clarence Ho,他们都是Spring领域的专家。这本书是Spring框架及其工具集的深入指南,并且是第五版,这意味着它包含了最新的内容和技术...

    仿人人博客系统,毕业设计.zip

    Spring框架的IoC(Inversion of Control)容器和AOP(Aspect Oriented Programming)特性,使得代码更加模块化,易于维护。同时,它很可能结合了MyBatis或JPA作为数据访问层,用于操作数据库,提供灵活的SQL查询和...

    Java各种必备面试题目程序代码例子与应战技巧.zip

    为了在面试中脱颖而出,除了掌握以上知识点外,还需要不断练习编程,提升解决问题的能力,阅读和分析开源项目,关注最新的技术动态。同时,良好的沟通技巧和团队合作精神也至关重要。准备面试时,可以通过模拟问答,...

    java面试评价表

    - **IOC与AOP**:介绍依赖注入(IOC)的概念及其优势,以及面向切面编程(AOP)的实现原理与应用场景。 - **Bean的作用域与生命周期**:讨论Bean的生命周期管理及不同作用域下的行为差异。 - **SpringBoot改进**:...

    java开发工程师简历模板.doc

    - 应用 Spring 的 IOC 和 AOP 技术降低组件间的耦合度,提高可维护性和可扩展性。 ### 三、其他经历 #### 工作经历 - **职位**: 多媒体设备维护员 - **收获**: 提升了跨部门沟通能力和抗压能力。 #### 证书 - **...

    架构师要做些什么(全面介绍架构师的工作职责)

    4. 开源资源:研究开源架构,如JBoss、Spring等,分析其设计思想和版本演进,这有助于拓宽视野和提升设计能力。 例如,JBoss是一个全面的Java企业级应用服务器,包含了Web服务器、EJB容器、数据库引擎以及AOP支持。...

    Java个人简历模板31.doc

    - **Spring**:熟练使用Spring框架,包括IOC、DI、AOP、声明式事务处理和SSH集成。 - **Mybatis**、**SpringMVC**:对这两个开源框架有了解。 4. **数据库管理**: - **Oracle**、**MySQL**:熟悉这两款数据库,...

    java应聘简历模板

    - Spring:轻量级的控制反转(IoC)和面向切面编程(AOP)容器,支持模块化开发。 - MyBatis:半自动化的ORM框架,提供更灵活的数据访问层处理。 - SpringMVC:Spring框架的一部分,用于构建基于MVC设计模式的...

    Nutz官方手册

    作为一个新兴的开源项目,Nutz没有过去的包袱,只有未来的无限可能。Nutz承诺将始终坚持简洁、高效的原则,不断迭代更新以满足开发者的需求。未来计划包括但不限于: - **持续改进性能**:优化现有功能,增加新的...

    房产中介管理系统(毕设,以调试可运行)

    5. **Spring框架**:Spring提供了AOP(面向切面编程)和IOC(依赖注入)功能,便于管理和组织应用程序的组件。它还能与其他框架集成,如Struts和Hibernate。 6. **MVC架构**:MVC模式是软件设计的经典模式,它将...

Global site tag (gtag.js) - Google Analytics