일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- SWIFT
- MYSQL
- SSH
- 안드로이드
- SSL
- MFA
- 2FA
- otpkey
- 애플
- git
- kmip
- Android
- FIDO2
- appres
- OTP
- 인증
- MSYS2
- albumbook
- Xcode
- Nodejs
- fido
- SwiftUI
- 앱리소스
- apple
- 앱스토어
- css
- OSX
- openssl
- WebAuthn
- 앨범북
Archives
- Today
- Total
인디노트
JSP 에서 JSTL 적용이 안될때 , 예를 들어 ${msg} 가 그냥 출력될 때. 본문
소스 팁/HTML, Java Script, jQuery, CSS
JSP 에서 JSTL 적용이 안될때 , 예를 들어 ${msg} 가 그냥 출력될 때.
인디개발자 2020. 3. 15. 00:49jsp 에서 JSTL 의 출력에 있어서 ${msg} 와 같은 출력이 값이 표시되지 않고 그냥 ${msg} 로 될때.
<%@ page isELIgnored="false" %>
만 추가하면 된다. 휴~~~
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ page isELIgnored="false" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<h1>Spring MVC web service</h1>
<h3>Return Message : <%= request.getAttribute("msg") %></h3>
<h3>Return Message : <c:out value = "${msg}"/></h3>
</body>
</html>
반응형
'소스 팁 > HTML, Java Script, jQuery, CSS' 카테고리의 다른 글
다국어 리소스 관리 솔루션 (0) | 2021.03.05 |
---|---|
Javascript Base64 Image 관련 (0) | 2021.01.22 |
JavaScript ES6 to ES5 - 바벨 (babel) (0) | 2019.10.17 |
자바스크립트에서 strict mode를 사용해야 하는 이유 (0) | 2018.11.10 |
mybatis null test (0) | 2017.06.21 |
Comments