为了配置Tomcat的JNDI数据源,您需要进行以下步骤:
在Tomcat的安装目录下找到“conf”文件夹,然后打开“context.xml”文件。
在文件中添加以下内容:
<Resourcename="jdbc/goldenDB" auth="Container" type="javax.sql.DataSource"
maxTotal="100" maxIdle="30" maxWaitMillis="10000"
username="[username]" password="[password]" driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://[host]:[port]/[database_name]"/>