- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Murach's Java Servlets and JSP</title>
</head>
<body>
<%-- import packages and classes needed by the scripts --%>
<%@ page import="business.*, data.*" %>
<%
//get parameters from the request
String firstName = request.getParameter("firstName");
String lastName = request.getParameter("lastName");
String emailAddress = request.getParameter("emailAddress");
// get the real path for the EmailList.txt file
ServletContext sc = this.getServletContext();
String path = sc.getRealPath("/WEB-INF/EmailList.txt");
// use regular Java objects
User user = new User(firstName, lastName, emailAddress);
UserIO.add(user, path);
%>
<h1>Thanks for joining our email list</h1>
<p>Here is the information that you entered: </p>
<table cellspacing="5" cellpadding="5" border="1">
<tr>
<td align="right">First name:</td>
<td><%= firstName %></td>
</tr>
<tr>
<td align="right">Last name:</td>
<td><%= lastName %></td>
</tr>
<tr>
<td align="right">Email Address:</td>
<td><%= emailAddress %></td>
</tr>
</table>
<p>To enter another email address, click on the Back <br />
button in your browser or the Return button shown <br />
below.</p>
<form action="index.jsp" method="post">
<input type="submit" value="Return" />
</form>
</body>
</html>
Compilation of 'C:\bea\user_projects\domains\mydomain.\myserver.wlnotdelete\extract\myserver_sample01_WebContent\jsp_servlet__display_email_entry.java'
failed: C:\bea\user_projects\domains\mydomain.\myserver.wlnotdelete\extract\myserver_sample01_WebContent\jsp_servlet__display_email_entry.java:140: cannot resolve symbol
probably occurred due to an error in /display_email_entry.jsp line 19:
ServletContext sc = this.getServletContext();Full compiler error(s): C:\bea\user_projects\domains\mydomain.\myserver.wlnotdelete\extract\myserver_sample01_WebContent\jsp_servlet__display_email_entry.java:140: cannot resolve symbol
symbol : method getServletContext ()
location: class jsp_servlet.__display_email_entry
ServletContext sc = this.getServletContext(); //[ /display_email_entry.jsp; Line:19] ^
1 error
Thu Jun 03 15:56:09 CST 2010
最佳答案
Weblogic 中的 JSP 在 getServletContext 方面的行为与 Tomcat 不同
替换 ServletContext sc = this.getServletContext();
至 ServletContext sc = getServletConfig().getServletContext();
关于jsp getServletContext() 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2964250/
这个问题在这里已经有了答案: Different ways to get Servlet Context (1 个回答) 关闭 6 年前。 我有 SampleServlet 类,在其中我重写了 do
我已经看到您也可以直接调用 getservletcontext() 并且也像这样 req.getsession().getservletcontext() 。 这两者有什么区别,我应该使用哪一个?有没
我有一个 Tomcat 6 实例在我的本地机器上运行。 我对其配置进行了以下更改: 在/conf/context.xml – 如下更改标签 在/conf/server.xml – 更改标签如下 假
html Murach's Java Servlets and JSP Thanks for joining our email list H
我知道这个问题已被问过一百万次并且有 500 万个答案 - 一些或其中的信息非常丰富。这些都没有解决这个问题。 我的目标与许多其他目标类似 - 我想访问网络应用程序运行时环境中的文件 - 图像、svg
我是一名菜鸟程序员,正在为 tomcat 在 eclipse 上开发我的第一个动态 Web 应用程序。它与 mySQL 数据库通信并修改一些模板文件并将它们另存为新文件。该应用程序需要便携。我知道绝对
我正在尝试使用 getServletContext().getRealPath( "/") ,但我不断收到此错误: 找不到符号符号:方法 getServletContext()位置:接口(interf
这个问题已经有答案了: Recommended way to save uploaded files in a servlet application (2 个回答) 已关闭 8 年前。 这是我的情况
背景:我想通过使用 Velocity 和 servlet 来学习 Web 开发。我使用 getServletContext().getRealPath("/") 查找 WEB-INF 的路径以及存储在
以下代码是我的示例 servlet 应用程序 protected void doGet(HttpServletRequest request, HttpServletResponse response
我要获取servletContext在 Java 类中从 WEB-INF 读取文件目录。我用 HttpServlet 扩展了我的类(class)并尝试获取如下代码中的上下文,但 servlet 配置返
当尝试像这样设置 Context 属性时: void init() { String testing = new String(); testing = "This is a test
getServletContext.getRealPath("string") 抛出空指针异常。我如何使用它来获取真实路径? public void doGet(HttpServletRequest
我一直在编写一个脚本来构建项目、创建 War 文件并将其部署到 Tomcat 上。我在执行脚本时收到以下错误,特别是在 javac 命令期间。请注意,我尝试在没有 Eclipse 的情况下进行此操作,
本文整理了Java中org.directwebremoting.WebContext.getServletContext()方法的一些代码示例,展示了WebContext.getServletCont
我的生产应用程序位于某个域名 ABC.com 上。在我的代码中,我根据某些操作将用户重定向到其他页面 response.sendRedirect(request.getServletContext()
我正在努力将现有应用程序从 Spring Boot 1.5 升级到 2.1。此应用程序作为 WAR 文件部署在现有 Tomcat 实例中。 我已经克服了大部分迁移障碍,但现在当 Thymeleaf 的
ServletContext context=getServletContext(); 这里 ServletContext 是接口(interface)。 Context是ServletContext
我有一个MainServletContext,它实现了存储属性的ServletContextListener public void contextInitialized(ServletContext
下面是 GenericServlet 类中的 2 个方法, public ServletConfig getServletConfig() { return this.conf
我是一名优秀的程序员,十分优秀!