-
Servlet-JSP MVC07 - 리스트에 이미지 띄우고, 상세페이지에서 파일보기Web/Servlet-JSP 2023. 7. 22. 23:35
1. 회원리스트에 이미지 띄우기
- MemberList.jsp에 회원정보 출력되는 테이블 휴대폰 번호 밑에 아래와 같이 이미지를 띄우도록 추가하면 된다.
<td> <c:if test="${vo.filename !=null && vo.filename !='' }"> <img src="<c:out value='file_REPO/${vo.filename}'/>" width ="60px" height="60px" > </c:if>
*이미지 파일의 경로는 루트디렉토리에 file_REPO폴더안에 있다. <c:out> 태그를 이용해 루트 디렉토리는
자동으로 추가하고, 폴더명이랑 파일명만 적어두자
2. 회원상세페이지에 파일 띄우기
<div class="form-group"> <label class="control-label col-sm-2">첨부파일</label> <div class="col-sm-10"> <input type="file" id ="file" name="file"> <!-- 파일첨부 수정하려고 --> <c:if test="${vo.filename != null && vo.filename != ''}"> <c:out value="${vo.filename}"/> </c:if> <c:if test="${sessionScope.userId != null && sessionScope.userId == vo.id && vo.filename != null && vo.filename != ''}"> <span class="glyphicon glyphicon-remove"></span> </c:if> </div>
- 아래와 같이 div를 하나 추가해주자.
- 삭제버튼을 추가했는데 로그인 + 첨부파일이 있을 경우에만 x버튼이 뜨도록 만들었다.
참고자료: 나프2탄(박매일) - 인프런
https://www.inflearn.com/course/%EB%82%98%ED%94%84-mvc-2/dashboard
'Web > Servlet-JSP' 카테고리의 다른 글
Servlet-JSP MVC07 - 파일 삭제 하기 (0) 2023.07.24 Servlet-JSP MVC07 - 파일 다운로드 (0) 2023.07.23 Servlet-JSP MVC07(3) - Ajax 파일업로드 (0) 2023.06.27 Servlet-JSP MVC07 (2) - ajax로 JSON 다루기 (0) 2023.06.26 Servlet-JSP MVC07 (1) - Ajax를 활용한 id 중복확인 (0) 2023.06.25