MVC架构中的servlet层重定向404小坑

servlet层中的UserLoginServlet.java

java 复制代码
package com.mhys.servlet; /**
 * ClassName: ${NAME}
 * Description:
 *
 * @Author 数开_11
 * @Create 2024-05-29 20:32
 * @Version 1.0
 */

import com.mhys.pojo.User;
import com.mhys.service.UserService;
import com.mhys.service.impl.UserServiceImpl;

import javax.naming.Name;
import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.annotation.*;
import java.io.IOException;
import java.lang.annotation.Repeatable;
import com.mhys.servlet.UserLoginServlet;
@WebServlet(name = "UserLoginServlet",value = "/UserLoginServlet")
public class UserLoginServlet extends HttpServlet {
    @Override
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

        doPost(request,response);
    }


    @Override
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

        request.setCharacterEncoding("utf-8");
        String name = request.getParameter("name");
        String pwd = request.getParameter("pwd");
        // 创建userServlet
        UserService service = new UserServiceImpl();
        User user = service.findByNameAndPassword(name, pwd);
        if (user != null) {
            request.getRequestDispatcher("/index.jsp").forward(request, response);
//            response.sendRedirect("/login.jsp");
        } else {
            request.setAttribute("msg", "user/pwd错误哦");
            request.getRequestDispatcher("/login.jsp").forward(request, response);
//            response.sendRedirect("login.jsp");
        }

    }
}

创建servlet映射对应到页面表单的跳转

login.jsp

html 复制代码
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <style>
        .centered-element{
            margin: 300px auto ;
            width: 200px;
            display: block;
        }
    </style>
    <meta charset="UTF-8" >
    <title>HadoopWebLogin</title>
</head>
<body>
    <form action="/UserLoginServlet" class="centered-element">
<%--        使用外部css来居中这个table--%>
        <table class="centered-element">
<%--            caption标签定义了表格的标题--%>
            <caption>用户登录</caption>
<%--            tr标签表示的时表格的row--%>
            <tr>
<%--                td标签表示的是单元格cell--%>
                <td>账户:</td>
<%--    input标签是一个输入的控件--%>
                <td><input type="text" name="name"></td>
            </tr>
            <tr>
                <td> 密码: </td>
                <td><input type="text" name="pwd"></td>
            </tr>
            <tr>
                <td><input type="submit" value="登录"></td>
                <td><input type="reset" value="重置"></td>
            </tr>
<%--    从request域中拿info--%>
            <tr>
                <td colspan="2"><span style="color: red;">${msg}</span></td>
            </tr>
        </table>
    </form>

</body>
</html>

submit之后去找servlet层中的UserLoginServlet.java 进行逻辑判断---> 重定向操作

注!: 这里必须要在web.xml中配置上**!!!!!(我是在这里犯错了,U小写了,找了半天没看出了,笑晕)**

XML 复制代码
   <servlet>    
        <servlet-name>UserLoginServlet</servlet-name>
        <servlet-class>com.mhys.servlet.UserLoginServlet</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>UserLoginServlet</servlet-name>
        <url-pattern>/UserLoginServlet</url-pattern>
    </servlet-mapping>
复制代码

这里的webservlet中的路径是严格区分大小写的,写错小个小点都会在登录时重定向报404找不到资源!!!!

另一个注意点:就是创建对象获取数据库中的user/pwd时new 数据类型是UserService 父类

不要是接口的实现类

utils 层中的JDBCUtils.java

java 复制代码
package com.mhys.util;

import java.io.InputStream;
import java.sql.Connection;
import java.sql.DriverManager;
import java.util.Properties;

/**
 * ClassName: JdbcUtils
 * Description:
 *
 * @Author 数开_11
 * @Create 2024-05-29 17:46
 * @Version 1.0
 */
public class JdbcUtils {
    public static Connection getConnection() throws Exception{
        Connection connection=null;
        try{
            //1-读取db.properties文件
            Properties properties=new Properties();
            InputStream in=JdbcUtils.class.getClassLoader().getResourceAsStream("db.properties");
            properties.load(in);

            //2-读取属性
            String driver=properties.getProperty("driver");
            String url=properties.getProperty("url");
            String username=properties.getProperty("username");
            String password=properties.getProperty("password");

            //3-注册驱动
            Class.forName(driver);

            //4-获取连接
            connection= DriverManager.getConnection(url,username,password);

            //5-日志打印连接信息
            System.out.println("连接信息: " + url + " " + username + " " + password);
        } catch (Exception e) {
            e.printStackTrace();
            throw new RuntimeException("数据库连接失败,请检查连接参数是否正确!");
        }
        return connection;
    }
}

和项目的资源目录下配置db.properties文件

复制代码
内容:
java 复制代码
driver=com.mysql.cj.jdbc.Driver
url=jdbc:mysql://localhost:33306/javaweb?useUnicode=true&characterEncoding=utf8&serverTimezone=GMT%2B8&useSSL=false
username=root
password=root
相关推荐
万粉变现经纪人1 小时前
如何解决 pip install flash-attention 报错 需要 SM_80+(Ampere)架构 问题
python·架构·django·bug·virtualenv·pip·pygame
我登哥MVP1 小时前
【SpringMVC笔记】 - 2 - @RequestMapping
java·spring boot·spring·servlet·tomcat·intellij-idea·springmvc
ldj20202 小时前
从 API 调用到事件驱动:用 RabbitMQ /RocketMQ重构微服务通信架构
架构·rabbitmq
2301_780789662 小时前
什么是端口?端口攻击如何检测和防御
服务器·人工智能·游戏·架构·零信任
xixixi777772 小时前
智算中心建设新范式:GPT-6/Rubin架构+1.6T光模块+量子安全网关+AI安全沙箱,算力·效率·安全·成本的最优平衡
人工智能·gpt·安全·机器学习·架构·大模型·通信
ZHENGZJM2 小时前
Map-Reduce 架构:智能拆分与并发分析
架构
eastyuxiao2 小时前
多机 OpenClaw 互联完整方案
人工智能·架构
CodeAI2 小时前
微前端入门:qiankun + Vue 3 + Vite 从0搭建第一个微前端应用
架构
AI2512242 小时前
AI文生视频技术解析:主流工具的模型架构与能力对比
人工智能·架构·音视频
SuperEugene3 小时前
Vue3 配置驱动表格:列配置/操作配置/分页配置,统一表格渲染|配置驱动开发实战篇
前端·javascript·vue.js·驱动开发·架构