私はMurachのJava ServletsとJSP 2nd Editionを読んでいます。 彼は.batファイルを通して自動的にインストールされるデータベースを提供します。他に何ができるのか分かりません
私は彼の例を試しましたが、うまくいきました。
私は彼のデータベースを使って私のアプリケーションを作成しようとしていますが、何も起こっていません。ここでは、次のコードは次のとおりです。
JSP:
<%--
Document : index
Created on : 27/01/2012, 9:20:02 AM
Author : Camus
--%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Form</title>
</head>
<body>
<h1>Type your information here!</h1>
<form action="addToEmailList" method="get">
<input type="text" name="firstName">First Name<br>
<input type="text" name="lastName"> Last Name<br>
<input type="text" name="emailAddress"> email
<input type="submit" value="Submit">
</form>
</body>
</html>
サーブレット
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
import java.sql.*;
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
/**
*
* @author Camus
*/
public class addToEmailList extends HttpServlet {
/**
* Processes requests for both HTTP <code>GET</code> and <code>POST</code> methods.
* @param request servlet request
* @param response servlet response
* @throws ServletException if a servlet-specific error occurs
* @throws IOException if an I/O error occurs
*/
protected void processRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
String firstName = request.getParameter("firstName");
String lastName = request.getParameter("lastName");
String emailAddress = request.getParameter("emailAddress");
User user = new User();
user.setFirstName(firstName);
user.setLastName(lastName);
user.setEmailAddress(emailAddress);
String query ="DELETE FROM user WHERE FirstName = 'Diogo'";
try {
String dbURL="jdbc:mysql://localhost:3306/murach";
String username ="root";
String password = "sesame";
Connection connection = DriverManager.getConnection(dbURL, username, password);
Statement statement = connection.createStatement();
statement.executeUpdate(query);
connection.close();
}
catch (Exception e) {
e.printStackTrace();
}
String URL = "/result.jsp";
RequestDispatcher dispatcher = getServletContext().getRequestDispatcher(URL);
dispatcher.forward(request, response);
}
// <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
/**
* Handles the HTTP <code>GET</code> method.
* @param request servlet request
* @param response servlet response
* @throws ServletException if a servlet-specific error occurs
* @throws IOException if an I/O error occurs
*/
@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
processRequest(request, response);
}
/**
* Handles the HTTP <code>POST</code> method.
* @param request servlet request
* @param response servlet response
* @throws ServletException if a servlet-specific error occurs
* @throws IOException if an I/O error occurs
*/
@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
processRequest(request, response);
}
/**
* Returns a short description of the servlet.
* @return a String containing servlet description
*/
@Override
public String getServletInfo() {
return "Short description";
}// </editor-fold>
}
私はすでに多くのことを試みたと私は何が起こっていないデータベースにチェックインしたとき。私は別のクエリを試して、何も更新されていません。あなたは私が間違っていることを知っていますか?
私を助けてください。私はそれが基本的な間違いであるはずだと思っていますが、私が学んでいるところで、何が起こっているのか本当に分かりません。
ありがとうございます。
お返事ありがとうございます。私が言ったように私はすべてを試していた。私はDBが更新されているかどうかを確認する最速の方法であるため、このクエリを使用しています。私は最初に選択を試みましたが、どちらもうまくいきませんでした。 – Camus
もう一度ありがとうございます。しかし、私が言ったように私は初心者です。私はあなたがインターフェイスと永続性によって何を意味するのではありません。ありがとう – Camus
学習する時間。永続性とは、「アプリケーションが実行されていなくてもデータを利用できるように、データベースまたはファイルシステムに保存する」という意味です。ランの間に「持続する」。 – duffymo