I was playing with Weld-SE (Java SE) and noticed that if there are a lot of JARs in the classpath, the JVM startup time runs into several seconds.

Isn't there a way to specify/restrict the scan path as a package pattern or path pattern like in Apache Ant or AspectJ?

PS: Registration on Weld forum just does not work - it keeps saying "your password is trivial"

link|improve this question

38% accept rate
feedback

2 Answers

Starting with weld 1.1.0, it is possible according to Weld reference documentation :

<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>
link|improve this answer
feedback

Good questions, but I don't think it is possible. Each archive is scanned for beans.xml, by spec.

link|improve this answer
guess it's time for you to remove that answer, @Bozho : previous one is perfectly valid. – Riduidel Mar 12 at 10:53
2  
@Riduidel thanks. I thought of deleting it, but as per the CDI spec there is no way. Weld is just one implementation. I have upvoted the other answer, as it is practically the most applicable one. – Bozho Mar 12 at 11:21
Indeed, I forgot the non-standard aspect, thanks for explaination. – Riduidel Mar 12 at 12:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.