4上运行JUnit测试警告

4上运行JUnit测试警告

本文介绍了在导致错误的嵌入式glassfish 4上运行JUnit测试警告:AS-CDI-005的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用CDI在嵌入式Glassfish 4上运行JUnit测试。
它最终将导致以下输出无休止的循环:

I want to run JUnit Tests on an Embedded Glassfish 4 using CDI.It end up with an endless loop of the following output:

警告:AS-CDI-005 10月22日,2013 4:49:23 org。 glassfish.weld.BeanDeploymentArchiveImpl handleEntry

WARNING: AS-CDI-005 Okt 22, 2013 4:49:23 PM org.glassfish.weld.BeanDeploymentArchiveImpl handleEntry

任何人都可以帮助

Chears

推荐答案

对我有用的是在创建EJB容器时将您的应用名称放入属性中

What worked for me is putting your app name in the properties when creating the EJB container

Map<Object, Object> properties = new HashMap<Object, Object>();
properties.put(EJBContainer.APP_NAME, "your_app_name");
EJBContainer ejbContainer = EJBContainer.createEJBContainer(properties);

这篇关于在导致错误的嵌入式glassfish 4上运行JUnit测试警告:AS-CDI-005的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-12 23:09