具有私有构造函数的Singleton类的Spring(创建bean,没有可见构造函数时出错)

时间:2012-08-07 13:46:17

标签: java spring apache-camel

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

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

请在下面找到getInstance方法,即私有构造函数 和bean id声明。所有四个bean声明都是一样的

但是,如果我将构造函数从“Private”更改为“Public”,那么 我没有得到错误。任何人都可以对正在发生的事情发表任何看法吗?由于其他三个类都有私有构造函数,并且它们工作得很好

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)
:

1 个答案:

答案 0 :(得分:5)

问题不在于bean创建本身(正如您已经注意到的那样,与其他bean没有区别)。该问题似乎与您尝试使用的某些AOP配置有关。如果要为该类创建代理,则无法使用CGLIB执行此操作,因为该类无法进行子类化(因为它具有私有构造函数)。

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