Expand my Community achievements bar.

Don’t miss the AEM Skill Exchange in SF on Nov 14—hear from industry leaders, learn best practices, and enhance your AEM strategy with practical tips.
SOLVED

JDBC Connection DataSource in a Servlet

Avatar

Level 7

 

I have tried dependency injection but, it cannot find my "Apache Sling Connection Pooled DataSource"

@reference
private DataSourcePool dsp;

 

DataSource ds = (DataSource) dsp.getDataSource("MYDB");

 

I am using SlingSafeMethodsServlet.

 

Any help would be appreciated.

 

1 Accepted Solution

Avatar

Correct answer by
Level 7

Figured it out.

 

@reference(target = "(&(objectclass=javax.sql.DataSource)(datasource.name=MYDB))")
private DataSource ds;

View solution in original post

1 Reply

Avatar

Correct answer by
Level 7

Figured it out.

 

@reference(target = "(&(objectclass=javax.sql.DataSource)(datasource.name=MYDB))")
private DataSource ds;