[Spring Legacy] JSP 에서 profile 에 따른 분기처리

식빵·2024년 2월 21일
0

spring-legacy-configure

목록 보기
7/9
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
<c:set var="contextPath" value="${pageContext.request.contextPath}" />

<spring:eval expression="@environment.acceptsProfiles('local')" var="isLocal" />
<c:if test="${!isLocal}">
  <script src="<c:out value="${contextPath}"/>/js/chunk-common.js"></script>
  <script src="<c:out value="${contextPath}"/>/js/chunk-vendors.js"></script>
</c:if>
<c:if test="${isLocal}">
  <script src="http://localhost:9090/js/chunk-common.js"></script>
  <script src="http://localhost:9090/js/chunk-vendors.js"></script>
</c:if>
profile
백엔드를 계속 배우고 있는 개발자입니다 😊

0개의 댓글