实例JerseyTest这个类
public class NMAAbstractRestTest extends JerseyTest {
@Override
protected Application configure() {
NMAdaptorApplication application = new NMAdaptorApplication();
return application;
}
}
NMAdaptorApplication构造。
public NMAdaptorApplication() {
log.info("NM-Adaptor-Application is being initilized....");
register(NMRestExceptionMapper.class);
register(ShiroFeature.class);
register(NMMarshallingFeature.class);
register(new LoggingFeature(java.util.logging.Logger.getLogger("nma"), LoggingFeature.Verbosity.PAYLOAD_ANY));
packages(true, "com.retailwave.rwos.nma.rest.resource");
loadProperties();
}
在执行以下的试验方法
@Test
public void makeOrder()
{
...
Entity entity = Entity.entity(orderContent, MediaType.APPLICATION_JSON);
WebTarget target = target("customerorders");
target.path("");
target.queryParam("cmd", "create");
target.queryParam("branchCode", "610");
arget.property(HttpAuthenticationFeature.HTTP_AUTHENTICATION_BASIC_USERNAME, "admin");
target.property(HttpAuthenticationFeature.HTTP_AUTHENTICATION_BASIC_PASSWORD, "admin");
Response response = target.request().post(entity);
}
收到以下异常
16:34:23.893 ERROR [Grizzly的HTTP服务器 - 0] crrneNMRestExceptionMapper - 异常在映射器捕获:没有安全管理器可访问到调用代码,无论是结合到org.apache.shiro.util.ThreadContext或作为VM静态单。 这是一个无效的应用程序配置。 org.apache.shiro.UnavailableSecurityManagerException:没有安全管理器访问到调用代码,无论是绑定到org.apache.shiro.util.ThreadContext或作为VM静态单。 这是一个无效的应用程序配置。 在org.apache.shiro.SecurityUtils.getSecurityManager(SecurityUtils.java:123)在org.apache.shiro.subject.Subject $生成器。(Subject.java:627)
我猜测它由于四郎滤波器,我在web.xml配置
<filter>
<filter-name>ShiroFilter</filter-name>
<filter-class>org.apache.shiro.web.servlet.ShiroFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>ShiroFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
而JUnit测试失败。 是否有任何选项,包括在web.xml中JerseyTest