使用@ApplicationScoped的CDI @Alternative注释

时间:2017-01-31 15:32:54

标签: java java-ee cdi

我有以下界面:

public interface StackConfigurationService {
    List<StackConfiguration> getStacksByAppId(String appId) throws ConfigurationException;
}

有两个实现:

@ApplicationScoped
public class StackConfigurationServiceImpl implements StackConfigurationService {
    public List<StackConfiguration> getStacksByAppId(String appId) throws ConfigurationException { ... }
}

@Alternative
@ApplicationScoped
public class StackConfigurationMockService implements StackConfigurationService {
    public List<StackConfiguration> getStacksByAppId(String appId) throws ConfigurationException { ... }
}

beans.xml包含以下内容:

<?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://java.sun.com/xml/ns/javaee" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
    http://java.sun.com/xml/ns/javaee/beans_1_0.xsd">

    <alternatives>
        <class>my.app.StackConfigurationMockService</class>
    </alternatives>
</beans>

但是,CDI从不使用该服务的模拟实现。 @ApplicationScoped注释是否会以任何方式干扰?

1 个答案:

答案 0 :(得分:0)

一直在努力。我正在更改beans.xml中的设置,重建并重新启动服务器,但问题出在浏览器中。我使用相同的选项卡,只需在每次服务器重启后点击刷新。我假设服务器缓存了该会话的类。在新标签中打开解决了这个问题。