Results 1 to 2 of 2

Thread: Invalid referenced bean errors, v1.3.1

  1. #1
    Join Date
    Mar 2005
    Location
    WI, USA
    Posts
    6

    Default Invalid referenced bean errors, v1.3.1

    Anyone know why I can't get these validation errors to disappear? The spring project builder is turned on, and set to build automatically. Here is a snippet of config file. I'm also using Spring 1.2.8.

    The validator tells me that the sessionFactory reference in the transactionManager bean is an "Invalid referenced bean". This did not happen before upgrading to 1.3.1.

    HTML Code:
    <bean id="sessionFactory"  class="org.springframework.orm.hibernate.LocalSessionFactoryBean">
    	<property name="dataSource">
    		<ref local="dataSource" />
    	</property>
    	... (other properties)
    </bean>
    <bean id="transactionManager" class="org.springframework.orm.hibernate.HibernateTransactionManager">
    	<property name="sessionFactory">
    		<ref local="sessionFactory" />
    	</property>
    </bean>

  2. #2
    Join Date
    Aug 2004
    Location
    Frankfurt/Main, Germany
    Posts
    253

    Exclamation Bugfix release 1.3.2 is available on our updatesite

    Ups, this bug was introduced while fixing #303.

    A new bugfix release 1.3.2 is available on our updatesite.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •