我正在玩Weld-SE(
Java SE),并注意到,如果类路径中有很多JAR,则JVM启动时间会持续几秒钟.
没有办法指定/限制扫描路径为封装模式或路径模式,如Apache Ant或AspectJ?
PS:在焊接论坛上注册不行 – 它一直说“你的密码是微不足道的”
从焊接1.1.0开始,可以按照
Weld reference documentation:
原文链接:https://www.f2er.com/javaschema/281815.html<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://docs.jboss.org/cdi/beans_1_0.xsd http://jboss.org/schema/weld/beans http://jboss.org/schema/weld/beans_1_1.xsd"> <weld:scan> <weld:exclude name="mypackage.MyClass"/> </weld:scan> </beans>