JSPベース


目次

  • 目次
  • JSPベース
    - 1.結果
    - 2.結果
    - References
  • JSPベース

  • basic.jsp
  • <%@ page language="java" contentType="text/html; charset=UTF-8"
        pageEncoding="UTF-8"%>
        
    <% 
    	
    	String cnt_ = request.getParameter("cnt");
    	
    	int cnt = 50;
    	
    	if (cnt_ != null && !cnt_.equals("")) {
    		cnt = Integer.parseInt(cnt_);
    	}
    
    %>
    
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>Insert title here</title>
    </head>
    <body>
    	
    	안녕
    	
    	<% for(int i = 0; i<cnt; i++) { %>
    	
    		안녕 Servlet<br>
    	
    	<% } %>
    	
    	
    	
    </body>
    </html>

    1.結果

    http://localhost:9090/basic.jsp

    2.結果

  • form 태그使用しないget방식使用
  • <% 
    	String cnt_ = request.getParameter("cnt");
    	int cnt = 50;
    	
    	if (cnt_ != null && !cnt_.equals("")) {
    		cnt = Integer.parseInt(cnt_);
    	}
    %>
    
    http://localhost:9090/basic.jsp?cnt=3

    References

  • 新規編集 : Servlet / JSP
  • 🎈vsccodeクリーンアップ
  • 🎈2021.01.01