3

我有 4 个带有私有构造函数的单例类,我正在尝试为所有 4 个类创建 bean 属性。

主要问题是,我能够为 3 个类创建 bean,这 3 个类具有类似的结构,具有 getInstance 方法和私有构造函数()(Singleton 类),但第四个也是最后一个抛出异常(Exception消息粘贴在下面)

请在下面找到 getInstance 方法、私有构造函数和 bean id 声明。这在所有四个 bean 声明中都是相同的

但是,如果我将构造函数从“私人”更改为“公共”,那么我不会收到错误消息。任何人都可以对正在发生的事情有所了解吗?由于其他三个类具有私有构造函数并且它们工作得很好

getInstance() 方法

public static ApplicationConfiguration getInstance() throws IOException,
            IllegalArgumentException, InconsistentDataException {
        ApplicationConfiguration result = instance.get();
        if (result == null) {
            try {
                // Check again if already created
                result = instance.get();
                if (result == null) {
                    result = new ApplicationConfiguration();

                }
            } finally {
                // something here
            }
        } 
        return result;
    }

私有构造函数

private ApplicationConfiguration() throws Exception {
        // call a method here
    }

bean 属性声明

<bean id="configManager" class="com.manager.ApplicationConfiguration" factory-method="getInstance" />

<bean id="configEnricher" class="com.enricher.ApplicationConfiguration" factory-method="getInstance" />

<bean id="configBussiness" class="com.validationservice.ApplicationConfiguration" factory-method="getInstance" />

以上三部作品

此 bean 属性引发错误

<bean id="configEviction" class="com.evictionservice.ApplicationConfiguration" factory-method="getInstance" />

异常消息

[#|2012-08-07 11:53:21,130|ERROR|RMI TCP Connection(226)-172.18.36.14|org.springframework.
web.context.ContextLoader||slodev-rhngp5.mblox.com|core-1|Context initialization failed|#]
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'co
nfigEviction' defined in ServletContext resource [/WEB-INF/camel-context.xml]: Initializat
ion of bean failed; nested exception is org.springframework.aop.framework.AopConfigExcepti
on: Could not generate CGLIB subclass of class [class com.evictionservice.ApplicationConfiguration]: 
Common causes of this problem include using
a final class or a non-visible class; nested exception is java.lang.IllegalArgumentExcepti
on: No visible constructors in class com.evictionservice.ApplicationConfiguration
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.do
CreateBean(AbstractAutowireCapableBeanFactory.java:526)
        at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.cr
eateBean(AbstractAutowireCapableBeanFactory.java:455)
        at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(Abstr
actBeanFactory.java:293)
        at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingl
eton(DefaultSingletonBeanRegistry.java:222)
        at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(Abstrac
tBeanFactory.java:290)
        at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractB
eanFactory.java:192)
        at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstant
iateSingletons(DefaultListableBeanFactory.java:585)
        at org.springframework.context.support.AbstractApplicationContext.finishBeanFactor
yInitialization(AbstractApplicationContext.java:895)
        at org.springframework.context.support.AbstractApplicationContext.refresh(Abstract
ApplicationContext.java:425)
:
4

1 回答 1

8

问题不在于 bean 创建本身(正如您已经注意到的,这与其他 bean 没有什么不同)。该问题似乎与您尝试使用的某些 AOP 配置有关。如果你想为那个类创建一个代理,它不能用 CGLIB 来做,因为这个类不能被子类化(因为它有一个私有构造函数)。

解决这个问题的唯一方法(给定您当前的设计)是创建一个将由 ApplicationConfiguration 类实现的接口,然后为该接口创建代理而不是代理该类。

于 2012-08-07T13:58:45.163 回答