taglib:core/functions
functions-contains
checked 속성 넣어주기
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
<input type="radio" name="gender" id="male" value="male"
<c:if test="${mvo.gender=='male'}">checked</c:if>/>
<input type="checkbox" name="hobby" id="book" value="book"
<c:if test="${fn:contains(mvo.hobby,'book') }">checked</c:if> />
<label for="book">독서</label>