Maven 项目中的多个 web.xml 数据库连接

Multiple web.xml database connections in Maven Project

我不是 Java 的新手,但我最近学习了如何使用 web.xml 文件连接到数据库。

连接到我已经设置好的 mySql 和同一个 maven 项目中的 MSSql 数据库会很方便。

我对这个话题做了一些研究,但还没有真正找到我要找的答案。

就问题而言,这并不是很有帮助,但如果您想向我展示如何完成此操作,我已经提供了我的 web.xml 作为代码库。

如能提供正确方向的帮助,我们将不胜感激。

    <?xml version="1.0" encoding="UTF-8"?>

<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
     version="3.1">

    <context-param>
        <param-name>db.driver.class</param-name>
        <param-value>com.mysql.jdbc.Driver</param-value>
    </context-param>
    <context-param>
        <param-name>db.url</param-name>
        <param-value>jdbc:mysql://localhost:3308/lib-1323</param-value>
    </context-param>
    <context-param>
        <param-name>db.username</param-name>
        <param-value>root</param-value>
    </context-param>
    <context-param>
        <param-name>db.password</param-name>
        <param-value>admin</param-value>
    </context-param>



    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>
</web-app>

这是可以做到的。我会研究 Spring 和休眠。

我找到了 this article which may help

您需要 pom.xml 中的 Microsoft SQL 依赖项和正确的驱动程序。

希望对您有所帮助。