大家好,想请教一下,我参考了 "王者归来 JAVA Web 整合开发",
在 Action 内 ,利用以下三行连结数据库(MySQL)
Context initCtx = new InitialContext();
Context envCtx = (Context) initCtx.lookup("java:comp/env");
DataSource ds = (DataSource)envCtx.lookup("jdbc/struts");
出现以下错误:
Message java.sql.SQLException:
Cannot create JDBC driver of class '' for connect URL 'null'
已在 WEBINF/lib/web.xml内
<resource-ref>
<description>DB Connection</description>
<res-ref-name>jdbc/struts</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
及在 tomcat(9.0.0)/conf/context.xml 内,新增
<Context>
<Resource name="jdbc/struts" auth="Container" type="javax.sql.DataSource"
maxActive="5" maxIdle="2" maxWait="60"
username="帐号" password="密码" driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/struts"/>
</Context>