Granny's Programming Pearls
"inside of every large program is a small program struggling to get out"
JavaRanch.com/granny.jsp
The moose likes Spring and the fly likes Need help on JNDI DataSource in JBOSS? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Frameworks » Spring
Reply Bookmark "Need help on JNDI DataSource in JBOSS?" Watch "Need help on JNDI DataSource in JBOSS?" New topic
Author

Need help on JNDI DataSource in JBOSS?

kishore skipper
Greenhorn

Joined: Aug 19, 2009
Posts: 26
Hello All,

can somebody help me with datasource configuration?

I am using JBOSS 5.1 ,Spring 2.5

i have the spring configuration file defined as

<bean id="jndiTemplate" class="org.springframework.jndi.JndiTemplate">
<property name="environment">
<props>
<prop key="java.naming.factory.initial">org.jnp.interfac es.NamingContextFactory</prop>
<prop key="java.naming.provider.url">jnp://localhost:1099</prop>
<prop key="java.naming.factory.url.pkgs">org.jboss.namin grg.jnp.interfaces</prop>
<prop key="jnp.disableDiscovery">true</prop>

</props>
</property>
</bean>
<bean id="jndiDataSource" class="org.springframework.jndi.JndiObjectFactoryB ean">
<property name="jndiName">
<value>java:mySource</value>
</property>
<property name="resourceRef">
<value>false</value>
</property>
</bean>

when i tried this i am getting NameNotFound exception...but when i tried to lookup the same using java code it works!!

i am not sure why spring not able catch hold of this JNDI name...i have given enough trials from internet but it did not workout..

Thanks,
kishore
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Need help on JNDI DataSource in JBOSS?
 
Similar Threads
Jboss NameNotFoundException
Jboss NameNotFoundException
unsatisfied Dependancy exception
Spring 2.5 with Hibernate 3.0 error when creating dataSource for Hibernate SessionFactory
Spring configuration for Testing JMS using Junit