개발 창고/Web

[JSTL] 랜덤 숫자 변수 설정하기

로이제로 2022. 10. 14. 08:55
반응형
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

<!-- 랜덤 숫자 설정 -->
<c:set var="random"><%=java.lang.Math.round(java.lang.Math.random() * 1234)%></c:set>

<!-- 출력 -->
랜덤 숫자 : ${random}

처음 들어온 경우
새로고침 한 경우
새로고침 한 경우 #2

반응형