溫馨提示×

Tomcat中怎么設(shè)置JNDI數(shù)據(jù)源

小億
85
2024-04-03 17:55:40
欄目: 智能運維

在Tomcat中設(shè)置JNDI數(shù)據(jù)源,可以按照以下步驟進(jìn)行:

1、在Tomcat的`conf`文件夾中的`context.xml`文件中添加以下內(nèi)容:

```xml

maxActive="100" maxIdle="30" maxWait="10000"

username="your_username" password="your_password" driverClassName="com.mysql.jdbc.Driver"

url="jdbc:mysql://localhost:3306/mydatabase" />

```

其中`name`屬性是JNDI名稱,`username`和`password`是數(shù)據(jù)庫的用戶名和密碼,`driverClassName`是數(shù)據(jù)庫驅(qū)動類,`url`是數(shù)據(jù)庫連接的URL。

2、在應(yīng)用的`web.xml`文件中定義數(shù)據(jù)源的引用:

```xml

My DataSource

jdbc/myDataSource

javax.sql.DataSource

Container

```

3、在應(yīng)用中使用JNDI數(shù)據(jù)源:

```java

Context initContext = new InitialContext();

Context envContext = (Context) initContext.lookup("java:comp/env");

DataSource ds = (DataSource) envContext.lookup("jdbc/myDataSource");

Connection conn = ds.getConnection();

```

通過以上步驟,就可以在Tomcat中設(shè)置和使用JNDI數(shù)據(jù)源了。

0