we have a requirement to access a database through a webserver JNDI connection using spring framework
Solved! Go to Solution.
A solution to use JNDI in AEM. There could be other solutions as well --
Apache Sling :: DataSource Provider
While running in Application Server the DataSource instance might be managed by app server and registered with JNDI. To enable lookup of DataSource instance from JNDI you can configure JNDIDataSourceFactory
org.apache.sling.datasource.JNDIDataSourceFactory
If Felix WebConsole is used then you can configure it via Configuration UI at http://localhost:8080/system/console/configMgr/org.apache.sling.datasource.JNDIDataSourceFactory
Once configured JNDIDataSourceFactory
would lookup the DataSource instance and register it with OSGi ServiceRegistry
Views
Replies
Total Likes
AEM is not a Spring-based framework. Why would you have a requirement that is based on a framework that AEM is not? AEM uses DataSourcePool API to access databases via an OSGi bundle.
We are consuming one customized jar which is using spring framework. So, we need JNDI connection to connect with other database.is it possible ?
Views
Replies
Total Likes
I can say it’s not best practice. I recommend following best practice which is DataSoucePool to access a database from AEM.
Views
Replies
Total Likes
Can you please elaborate on bit on this? From your posts I don't get a clear understanding what you are trying to achieve.
Jörg
Views
Replies
Total Likes
Looks like they are attempting to connect to a database as if they are working in a SPRING MVC project. Something like - https://www.journaldev.com/2597/spring-datasource-jndi-with-tomcat-example
However - as i have pointed out, AEM is not a Spring based framework and therefore to connect to a database, one should work in the way that AEM connects to databases - which is using a DATASOURCEPOOL.
Views
Replies
Total Likes
A solution to use JNDI in AEM. There could be other solutions as well --
Apache Sling :: DataSource Provider
While running in Application Server the DataSource instance might be managed by app server and registered with JNDI. To enable lookup of DataSource instance from JNDI you can configure JNDIDataSourceFactory
org.apache.sling.datasource.JNDIDataSourceFactory
If Felix WebConsole is used then you can configure it via Configuration UI at http://localhost:8080/system/console/configMgr/org.apache.sling.datasource.JNDIDataSourceFactory
Once configured JNDIDataSourceFactory
would lookup the DataSource instance and register it with OSGi ServiceRegistry
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies