0

私は jsp を初めて使用します。動作するサーブレットは既にあります。URL でパラメーターを送信します (url/servletname?name=test&msg=test2)。しかし、それを視覚的に変換する jsp ファイルを作成したいのですが、開始方法がわからない、これが私のサーブレットです:

package mypackage;
import java.io.IOException;
import javax.servlet.http.*;

import java.util.*;
//import ma.cloud.ParticipantDao;

public class infoservlet extends HttpServlet{

    public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException {
        resp.setContentType("text/plain");

        String p_name=req.getParameter("name");
        String p_msg=req.getParameter("message");

        String p_resp_text="";

        if (p_id !=null && p_response !=null){

            try {
                Demand_aide_dao dao=new MemeCache_Demande_aide();
                dao.respond_demande_aide_by_id(p_id, p_response);
                p_resp_text="Hi Mr." + p_name + " }";
            } catch (Exception e) {
                // TODO: handle exception
                p_resp_text="message : error" + e.getMessage()+ " }";           
            }           
        }     
        resp.getWriter().println(p_resp_text);      
    }
}

開始方法と、URLのパラメーターから入力できる値に変換する方法についてのアイデアが必要です。私は今5日間立ち往生しています

4

1 に答える 1