
麻瓜 | Java Web
麻瓜明
这个作者很懒,什么都没留下…
展开
-
Tomcat 10 在 idea 中无法使用 pageContext.setAttribut();
由于 Tomcat 10 使用的 servlet-api 和 jsp-api 为 jakarta 的依赖。这样在使用 pageContext.setAttribute(); 或者 ${pageContext.request.contextPath} 都不出现提示和报错。<dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api<.原创 2022-02-18 19:13:35 · 617 阅读 · 0 评论 -
JSP 9大内置对象
PageContextRequestResponseSessionApplication (ServletContext) Config (ServletConfig)outpageexception原创 2022-02-18 17:09:57 · 153 阅读 · 0 评论 -
req.getParameterValues 输出前端乱码
前端页面<%@ page contentType="text/html;charset=UTF-8" language="java" %><html><head> <title>登录</title></head><body><%@ page pageEncoding="UTF-8" %><div style="text-align: center"> <form原创 2022-02-17 12:30:42 · 792 阅读 · 0 评论 -
Java Web 问题集合
1.为什么要编写 Servlet 的映射由于我们写的是 Java 程序,但是需要通过浏览器访问,而浏览器需要连接 web 服务器,所以我们要在 web 服务器中注册我们写的 Servlet,还需要给他一个浏览器能访问的路径。2.可以指定一些后缀或者前缀<servlet-mapping> <servlet-name>name</servlet-name> <url-pattern>*.mz</url-pattern>&原创 2022-02-17 12:14:18 · 207 阅读 · 0 评论 -
Maven 环境优化
1.修改 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原创 2022-02-13 14:42:18 · 396 阅读 · 0 评论 -
最新的 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:/.原创 2022-02-13 14:36:29 · 975 阅读 · 0 评论 -
Maven Tomcat 10 的 Servlet 导入
Tomcat 10 用 javax.servlet 会出现 ***Servlet不是Servlet<dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>4.0.1</version></dependency><dependency&原创 2022-02-13 14:14:36 · 3028 阅读 · 0 评论