我是新手程序员在eclipse上为tomcat开发我的第一个动态Web应用程序。它与mySQL数据库通信并修改一些模板文件并将其保存为新模板。该应用程序需要是便携式的。我知道绝对路径和相对路径,但是对于决定将额外资源放在哪里以及放入我的sql数据库路径中的内容非常困惑,因此可以通过.war文件访问它们。在我的电脑上,我能够连接到mySQL @ jdbc:mysql//localhost:3306/dbname
。但我确定这个网址不会在任何其他设备上运行..
如何让一切都变得便携?我应该在哪些位置复制模板以创建可以使用相对路径访问它们的.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>
的Servlet
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();
}
}
}
编辑:虽然我在网页内容中有模板文件夹,但我得到了空指针异常!
答案 0 :(得分:0)
But I'm sure this url won't work on any other device
在这种情况下,主机将充当本地主机除非您尝试使用不同端口连接某个远程服务器,否则该URL将起作用。
In what locations should I copy my templates
它应放在web-content或web-app目录下
更改
File source = new File(getServletContext().getRealPath("templates/fiel1.docx"));
到
File source = new File(getServletContext().getRealPath("/templates/fiel1.docx"));
假设模板是网络内容下的目录,而战争在部署期间爆炸