![]() |
VOOZH | about |
The CData JDBC driver for Confluence is easy to integrate with Java Web applications. This article shows how to efficiently connect to Confluence data in Jetty by configuring the driver for connection pooling. You will configure a JNDI resource for Confluence in Jetty.
Follow the steps below to connect to Salesforce from Jetty.
Enable the JNDI module for your Jetty base. The following command enables JNDI from the command-line:
java -jar ../start.jar --add-to-startd=jndi
Declare the resource and its scope. Enter the required connection properties in the resource declaration. This example declares the Confluence data source at the level of the Web app, in WEB-INF\jetty-env.xml.
<Configure id='confluencedemo' class="org.eclipse.jetty.webapp.WebAppContext"> <New id="confluencedemo" class="org.eclipse.jetty.plus.jndi.Resource"> <Arg><Ref refid="confluencedemo"/></Arg> <Arg>jdbc/confluencedb</Arg> <Arg> <New class="cdata.jdbc.confluence.ConfluenceDriver"> <Set name="url">jdbc:confluence:</Set> <Set name="User">admin</Set> <Set name="APIToken">myApiToken</Set> <Set name="Url">https://yoursitename.atlassian.net</Set> <Set name="Timezone">America/New_York</Set> </New> </Arg> </New> </Configure>
An API token is necessary for account authentication. To generate one, login to your Atlassian account and navigate to API tokens > Create API token. The generated token will be displayed.
To connect to a Cloud account, provide the following (Note: Password has been deprecated for connecting to a Cloud Account and is now used only to connect to a Server Instance.):
To connect to a Server instance, provide the following:
Configure the resource in the Web.xml:
jdbc/confluencedb javax.sql.DataSource Container
You can then access Confluence with a lookup to java:comp/env/jdbc/confluencedb:
InitialContext ctx = new InitialContext();
DataSource myconfluence = (DataSource)ctx.lookup("java:comp/env/jdbc/confluencedb");
The steps above show how to configure the driver in a simple connection pooling scenario. For more use cases and information, see the Working with Jetty JNDI chapter in the Jetty documentation.
Download a free trial of the Confluence Driver to get started:
Download NowLearn more:
👁 Confluence IconRapidly create and deploy powerful Java applications that integrate with Confluence.