ssh2中调用weblogic配置的JNDI 识别不了 求求好心人 给个解答吧 weblogic版本12c

weblogic给出的提示信息
信息: Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
2015-5-2 17:09:00 org.hibernate.hql.ast.ASTQueryTranslatorFactory
信息: Using ASTQueryTranslatorFactory
2015-5-2 17:09:00 org.hibernate.cfg.SettingsFactory buildSettings
信息: Query language substitutions: {}
2015-5-2 17:09:00 org.hibernate.cfg.SettingsFactory buildSettings
信息: JPA-QL strict compliance: disabled
2015-5-2 17:09:00 org.hibernate.cfg.SettingsFactory buildSettings
信息: Second-level cache: enabled
2015-5-2 17:09:00 org.hibernate.cfg.SettingsFactory buildSettings
信息: Query cache: disabled
2015-5-2 17:09:00 org.hibernate.cfg.SettingsFactory createRegionFactory
信息: Cache region factory : org.hibernate.cache.impl.NoCachingRegionFactory
2015-5-2 17:09:00 org.hibernate.cfg.SettingsFactory buildSettings
信息: Optimize cache for minimal puts: disabled
2015-5-2 17:09:00 org.hibernate.cfg.SettingsFactory buildSettings
信息: Structured second-level cache entries: disabled
2015-5-2 17:09:00 org.hibernate.cfg.SettingsFactory buildSettings
信息: Statistics: disabled
2015-5-2 17:09:00 org.hibernate.cfg.SettingsFactory buildSettings
信息: Deleted entity synthetic identifier rollback: disabled
2015-5-2 17:09:00 org.hibernate.cfg.SettingsFactory buildSettings
信息: Default entity-mode: pojo
2015-5-2 17:09:00 org.hibernate.cfg.SettingsFactory buildSettings
信息: Named query checking : enabled
2015-5-2 17:09:00 org.hibernate.impl.SessionFactoryImpl
信息: building session factory
2015-5-2 17:09:01 org.hibernate.impl.SessionFactoryObjectFactory addInstance
信息: Not binding factory to JNDI, no JNDI name configured

applicationContext.xml配置信息

<bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
    <property name="dataSource" ref="dataSource"/>
    <property name="hibernateProperties">
        <props>
            <prop key="hibernate.dialect">${hibernate.dialect}</prop>
            <prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
            <prop key="hibernate.format_sql">${hibernate.format_sql}</prop>
        </props>
    </property>
    <property name="packagesToScan">
        <list>
            <value>jsrwsyy.domain</value>
        </list>
    </property>
</bean>

<bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
    <prop