美文网首页
原生Web开发中遇到的数据库资源问题

原生Web开发中遇到的数据库资源问题

作者: 陶然然_niit | 来源:发表于2019-11-24 18:03 被阅读0次

    1.环境和工具

    • Win10
    • JDK 11
    • Tomcat 9
    • maven 3.6.2
    • MySQL 5.7
      没有用Spring系列,也没有用任何ORM框架,纯JDBC进行CRUD,配合Servlet的urlPatterns做成了RESTful风格的API,进行前后端分离开发,前端使用Vue.j和axios,请求接口数据并渲染。

    2.问题描述

    请求后端接口,使用Postman测试的时候,发现经常是第一次能请求到,后面就显示数据没找到(做了统一的异常结果处理)


    Postman测试
    后端日志

    3.解决方法

    在Tomcat中配置数据库连接,在web项目的web.xml中读入这个配置资源,并对数据库连接的工具类适当修改,问题得以解决。

    • 1.将数据库连接的驱动jar包复制一份到Tomcat的lib目录


      mysql驱动jar包
    • 2.在Tomcat的conf子目录,找到context.xml配置文件,做如下修改:
      注意修改成你自己的数据库,账号,密码。
      这里遇到了一个坑,就是连接的url中,问号后面的那些参数要加上amp; 否则就一直提示格式不对。。。
      这里主要是配置了jdbc的数据源,以后用了更成熟的技术栈,一般先都要配置数据源、连接池,可以帮我们更好地管理数据库连接资源,监控数据库性能等。

    <?xml version="1.0" encoding="UTF-8"?>
    <Context>
        <WatchedResource>WEB-INF/web.xml</WatchedResource>
        <WatchedResource>WEB-INF/tomcat-web.xml</WatchedResource>
        <WatchedResource>${catalina.base}/conf/web.xml</WatchedResource>
        <Resource name="jdbc/datasource" auth="Container" type="javax.sql.DataSource"
        username="root" password="root" driverClassName="com.mysql.jdbc.Driver"
        url="jdbc:mysql://localhost:3306/db_blog?useUnicode=true&amp;characterEncoding=UTF-8&amp;useSSL=false"
        maxTotal="100" maxIdle="30" maxWaitMillis="10000"/>
    </Context>
    
    • 3.修改项目WEB-INF目录的web.xml文件,读入刚才在Tomcat配置的数据源datasource
    <?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_4_0.xsd"
            version="4.0">
       <resource-ref>
           <description>jdbc/datasource</description>
           <res-ref-name>jdbc/datasource</res-ref-name>
           <res-type>javax.sql.DataSource</res-type>
           <res-auth>Container</res-auth>
       </resource-ref>
    </web-app>
    
    • 4.resouces资源目录的db-config.properties文件
    jdbc.driverClassName=com.mysql.jdbc.Driver
    jdbc.url=jdbc:mysql://localhost:3306/db_blog?useUnicode=true&characterEncoding=UTF-8&useSSL=false
    jdbc.username=root
    jdbc.password=root
    
    
    • 5.DbUtil数据库工具类
    package com.scs.web.blog.util;
    
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.io.InputStream;
    import java.sql.*;
    import java.util.Properties;
    
    /**
     * @author mq_xu
     * @ClassName DbUtil
     * @Description 数据库连接工具类
     * @Date 2019/11/10
     * @Version 1.0
     **/
    public class DbUtil {
        private static Logger logger = LoggerFactory.getLogger(DbUtil.class);
    
        private static Properties properties;
    
        private DbUtil() {
        }
    
        // 使用静态代码块保证在类加载的时候立即加载对应的配置文件
        static {
            properties = new Properties();
            try {
                InputStream ins = DbUtil.class.getClassLoader().getResourceAsStream("db-config.properties");
                assert ins != null;
                properties.load(ins);
                Class.forName(properties.getProperty("jdbc.driverClassName"));
            } catch (FileNotFoundException e) {
                logger.error("数据库配置文件未找到");
            } catch (IOException e) {
                logger.error("数据库配置文件读写错误");
            } catch (ClassNotFoundException e) {
                logger.error("数据库驱动 未找到");
            }
        }
    
    
        /**
         * 获得数据库连接Connection
         *
         * @return Connection 数据库连接
         */
        public static Connection getConnection() {
    
            Connection connection = null;
            try {
                connection = DriverManager.getConnection(
                        properties.getProperty("jdbc.url"),
                        properties.getProperty("jdbc.username"),
                        properties.getProperty("jdbc.password"));
            } catch (SQLException e) {
                logger.error("数据库连接失败");
            }
            return connection;
        }
    
        /**
         * 关闭connection
         *
         * @param connection 连接池对象
         */
        public static void close(Connection connection) {
            if (connection != null) {
                try {
                    connection.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
        }
    
        /**
         * 关闭Statement
         *
         * @param statement
         */
        public static void close(Statement statement) {
            if (statement != null) {
                try {
                    statement.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
        }
    
        /**
         * 关闭ResultSet
         *
         * @param resultSet
         */
        public static void close(ResultSet resultSet) {
            if (resultSet != null) {
                try {
                    resultSet.close();
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
        }
    
        /**
         * 关闭Connection 以及Statement
         *
         * @param connection
         * @param statement
         */
        public static void close(Connection connection, Statement statement) {
            close(connection);
            close(statement);
        }
    
        /**
         * 关闭Connection,Statement以及ResultSet
         *
         * @param connection
         * @param statement
         * @param resultSet
         */
        public static void close(Connection connection, Statement statement, ResultSet resultSet) {
            close(connection, statement);
            close(resultSet);
        }
    }
    
    • 6.Dao接口实现使用,简单举例,注意最后合理释放关闭资源
      @Override
        public void insert(User user) throws SQLException {
            Connection connection = DbUtil.getConnection();
            String sql = "INSERT INTO t_user (mobile,password) VALUES (?,?) ";
            PreparedStatement pst = connection.prepareStatement(sql);
            pst.setString(1, user.getMobile());
            pst.setString(2, user.getPassword());
            pst.executeUpdate();
            DbUtil.close(connection, pst);
        }
    
    • 7.重启你的Tomcat服务,基本上可以解决这个问题~~

    相关文章

      网友评论

          本文标题:原生Web开发中遇到的数据库资源问题

          本文链接:https://www.haomeiwen.com/subject/xpolwctx.html