반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- java역사
- Keras
- KNeighborsClassifier
- paragraph
- 데이터전문기관
- web
- inorder
- vscode
- cudnn
- web 용어
- discrete_scatter
- 결합전문기관
- 웹 용어
- bccard
- tensorflow
- broscoding
- postorder
- 재귀함수
- web 개발
- 머신러닝
- CES 2O21 참가
- C언어
- mglearn
- 자료구조
- web 사진
- pycharm
- classification
- 대이터
- html
- CES 2O21 참여
Archives
- Today
- Total
bro's coding
JSTL.Choose 본문
반응형
<%@page import="model.PersonVO"%>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%
PersonVO vo = new PersonVO("손흥민", 30);
request.setAttribute("pvo", vo);
%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>jstl 다중조건(choose , when , otherwise)</title>
</head>
<body>
EL로 name과 age를 출력 : 이름 ${requestScope.pvo.name } 나이
${requestScope.pvo.age }
<hr>
jstl 다중조건 choose , when , otherwise
<br>
<%--
아래 코드는
if(){
}else if(){
}else{
}
--%>
<c:choose>
<c:when test="${requestScope.pvo.name=='아이유' }">
이름은 아이유, 나이는 ${requestScope.pvo.age }세 입니다"
</c:when>
<c:when test="${requestScope.pvo.name=='손흥민' }">
이름은 손흥민, 나이는 ${requestScope.pvo.age }세 입니다."
</c:when>
<c:otherwise>
불금하세요~~
</c:otherwise>
</c:choose>
</body>
</html>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>step3-choose-form.jsp</title>
</head>
<body>
<form action="step3-2-choose-action.jsp">
이름 <input type="text" name="userName"><br>
나이 <input type="number" name="userAge"><br>
<input type="submit" value="전송">
</form>
<%-- step3-choose-action.jsp
19세 이상이면
아이유님 28세 성인입니다
13세 이상이면
아이유님 15세 청소년입니다
1~13세 미만이면
아이유님 7세 어린이입니다
0세 이하이면
아이유님 사람이 아닙니다
--%>
</body>
</html>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>step3-choose-action</title>
</head>
<body>
<%-- step3-choose-action.jsp
19세 이상이면
아이유님 28세 성인입니다
13세 이상이면
아이유님 15세 청소년입니다
1~13세 미만이면
아이유님 7세 어린이입니다
0세 이하이면
아이유님 사람이 아닙니다
--%>
<%-- choose 안에 뭐 넣으면 error --%>
<c:choose>
<c:when test="${param.userAge>=19 }">
${param.userName }님 ${param.userAge }세 성인입니다
</c:when>
<c:when test="${param.userAge>=13 }">
${param.userName }님 ${param.userAge }세 청소년입니다
</c:when>
<c:when test="${param.userAge>=1 }">
${param.userName }님 ${param.userAge }세 어린이입니다
</c:when>
<c:otherwise>
${param.userName }님 사람이 아닙니다
</c:otherwise>
</c:choose>
</body>
</html>
반응형
'[IT] > JSP' 카테고리의 다른 글
JSP.Paging (0) | 2021.05.04 |
---|---|
JSTL.forEach.begin/end (0) | 2021.04.23 |
JSTL.MAP (0) | 2021.04.23 |
JSTL.forEach (0) | 2021.04.23 |
JSTL.if (0) | 2021.04.23 |
JSTL.taglib (0) | 2021.04.23 |
EL.ServletContext (0) | 2021.04.23 |
EL.session (0) | 2021.04.23 |
Comments