검색결과 리스트
jsp에 해당되는 글 23건
- 2017.04.03 [spring] 선언한 모든 URI (RequestMapping) 표시하기
글
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
현재 SPRING 4.1을 사용 중에 모든 Controller에 선언한 RequestMapping (URI)를 표시해야 할 일이 생겼다.
아래의 예제에서는 GET방식의 URI만 표시하도록 하였다.
[TestController.java]
@Inject
private RequestMappingHandlerMapping endPoints;
@RequestMapping(value = "/test/list", method = RequestMethod.GET)
public String getEndPointsInView( Model model ) {
model.addAttribute("endPoints", endPoints.getHandlerMethods().keySet());
return "test/list";
}
[test/list.jsp]
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<c:forEach items="${endPoints}" var="endPoint">
<if test="${endPoint.methodsCondition eq '[GET]'}">
<c:set var="uri" value="${fn:replace(fn:replace(endPoint.patternsCondition, '[', ''), ']', '')}" />
<c:out value="${uri}" /><br>
</if>
</c:forEach>
'-- JSP, SPRING' 카테고리의 다른 글
Java 자료형 (0) | 2017.04.06 |
---|---|
[spring] insert 쿼리 후 insert_id 가져오기 (0) | 2017.04.06 |
[spring] ibatis, mybatis 동적태그 (0) | 2015.11.13 |
[spring] Mybatis 비교연산자, 부등호 사용 시 CDATA사용 (0) | 2015.05.11 |
jsp include (0) | 2014.07.01 |
RECENT COMMENT