使用 Adob​​e CQ5 的外部数据库?

发布于 2024-11-20 00:44:26 字数 161 浏览 4 评论 0原文

有没有办法连接外部数据库,比如mysql可以连接Adobe CQ5

Adobe cq5 中的 JCR(Java Content Repository) 现在默认连接到 H2 数据库...如何使其使用 sql/mysql?

Is there any way to connect external data base like mysql can be connected to Adobe CQ5?

JCR(Java Content Repository) in Adobe cq5 now by default connects to H2 database...how to make it use sql/mysql?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暗喜 2024-11-27 00:44:26

转至:/system/console/configMgr
打开:JDBC连接池配置
输入所有标准 JDBC 配置元素(用户名、密码、驱动程序、JDBC URI)
输入数据源名称(以下称为 yourDataSourceName)

在 JSP 或 Servlet 中:

<%@ page import="com.day.commons.datasource.poolservice.DataSourcePool" %>
<%@ page import="javax.sql.DataSource" %>

DataSourcePool dbService = sling.getService(DataSourcePool.class);
DataSource ds = (DataSource) dbService.getDataSource("yourDataSourceName");

if(ds != null) {
   try {
      %><sql:query var="result" sql="SELECT now()" dataSource="<%=ds%>" /><%
   } catch (Exception e) { } 
}

Go to: /system/console/configMgr
Open up: the JDBC Connections Pool configuration
Enter all the standard JDBC config elements (username, password, driver, JDBC URI)
Enter a Datasource Name (referred to below as yourDataSourceName)

In your JSP or Servlet:

<%@ page import="com.day.commons.datasource.poolservice.DataSourcePool" %>
<%@ page import="javax.sql.DataSource" %>

DataSourcePool dbService = sling.getService(DataSourcePool.class);
DataSource ds = (DataSource) dbService.getDataSource("yourDataSourceName");

if(ds != null) {
   try {
      %><sql:query var="result" sql="SELECT now()" dataSource="<%=ds%>" /><%
   } catch (Exception e) { } 
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文