gpt4 book ai didi

java - getServletContext() 的空指针异常?

转载 作者:行者123 更新时间:2023-11-28 23:35:10 24 4
gpt4 key购买 nike

我是一名菜鸟程序员,正在为 tomcat 在 eclipse 上开发我的第一个动态 Web 应用程序。它与 mySQL 数据库通信并修改一些模板文件并将它们另存为新文件。该应用程序需要便携。我知道绝对路径和相对路径,但是对于决定将额外资源放在哪里以及在我的 sql 数据库路径中放什么以便 .war 文件可以访问它们感到非常困惑。在我的 PC 上,我能够连接到 mySQL @ jdbc:mysql//localhost:3306/dbname。但我确信这个 url 不会在任何其他设备上工作..

如何让一切都变得便携?我应该在什么位置复制我的模板以创建一个可以使用相对路径访问它们的 .war 应用程序!

我为后半部分找到了一些帮助here但我认为这需要将文件放在 tomcat 目录中,我认为该目录不会与应用程序捆绑在一起。

编辑:这是我的代码

网络表单

<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<form action="test">
<input type="text" name="name"> </input>
</form>
<button type="submit">Create</button>
</body>
</html>

小服务程序:

package rtest;

import java.io.File;
import java.io.IOException;
import java.nio.file.Files;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
* Servlet implementation class Testservlet
*/
@WebServlet(description = "testing", urlPatterns = { "/test" })
public class Testservlet extends HttpServlet {
private static final long serialVersionUID = 1L;

/**
* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
*/
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// TODO Auto-generated method stub
File source = new File(getServletContext().getRealPath("templates/fiel1.docx"));
File dest = new File(getServletContext().getRealPath("templates/FF.docx"));

try{
Files.copy(source.toPath(), dest.toPath());
}catch(Exception e)
{
e.printStackTrace();

}
}

}

编辑:尽管我在 web 内容下有模板文件夹,但我收到空指针异常!

最佳答案

但我确信这个 url 不会在任何其他设备上工作

在那种情况下,该主机将充当本地主机除非您尝试连接具有不同端口的远程服务器,否则该 url 将有效。

我应该在什么位置复制我的模板

应该放在web-content或web-app目录下

改变

File source = new File(getServletContext().getRealPath("templates/fiel1.docx"));

File source = new File(getServletContext().getRealPath("/templates/fiel1.docx"));

假设templates是web-content下的一个目录,部署时war爆炸

关于java - getServletContext() 的空指针异常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25315099/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com