大家好,想請教一下,我參考了 "王者歸來 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>