CDI : beans.xml, 어디에 두어야합니까? CDI 구현으로 Weld를 사용하고 있습니다. .NET에 빈 beans.xml이있을 때 Weld 컨테이너를 인스턴스화하는 개체 그래프를 어셈블하려는 통합 테스트 가 잘 작동합니다src/test/java/META-INF/beans.xml . 다음은 간단한 테스트입니다. public class WeldIntegrationTest { @Test public void testInjector() { new Weld().initialize(); // shouldn't throw exception } } 이제 실행 mvn clean install하면 항상 다음을 얻습니다.Missing beans.xml file in META-INF! 내 루트 폴더는 WEB-INF ..