[weld] weld 1.1.0 beta1发布
wuhaixing
2010-09-03
在这个新发布的版本中,增加了一个很重要的特性,可以在bean.xml中说明不需要作为bean的类。
<beans xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:weld="http://jboss.org/schema/weld/beans" xsi:schemaLocation=" http://java.sun.com/xml/ns/javaee http://jboss.org/schema/cdi/beans_1_0.xsd http://jboss.org/schema/weld/beans http://jboss.org/schema/weld/beans_1_1.xsd"> <weld:scan> <!-- Don't include GWT support if GWT is not installed --> <weld:exclude name="com.acme.gwt.**"> <weld:if-class-available name="!com.google.GWT"/> </weld:exclude> </weld:scan> </beans> 还有些改进,比如unsafe inistators,新的proxy层,改善内存占用等。 下一版的JBOSS AS 6.0中,weld就是1.1.0版了。 |