๊ด€๋ฆฌ ๋ฉ”๋‰ด

C-log

3week ๋ณธ๋ฌธ

๐Ÿ“•JAVA/jsp

3week

4:Bee 2024. 3. 21. 10:59
728x90

JSP์˜ ์—ญํ• ์€ ํ†ฐ์บฃ์„ ๊ธฐ๋ฐ˜์œผ๋กœ ๋™์ž‘ํ•˜๋ฉฐ ํฌ๋กฌ์—์„œ HTTP request ํ”„๋กœํ† ์ฝœ์„ ๋ฐ›์•„์„œ ์ฒ˜๋ฆฌํ•˜์—ฌ HTTP response ํ”„๋กœํ† ์ฝœ์„ ๋งŒ๋“ค์–ด์„œ ํฌ๋กฌ์— ์ „๋‹ฌํ•œ๋‹ค. ํฌ๋กฌ V8์„ ๊ธฐ์ค€์œผ๋กœ js์™€ html,css๊ฐ€ ๋Œ์•„๊ฐ€๋Š” ๊ฒƒ์ด๋‹ค.

# ํ•œ๊ธ€ ํ‘œ๊ธฐ๋ฅผ ๊นจ์ง€์ง€ ์•Š๊ณ  ์ž˜ ๋Œ์•„ ๊ฐˆ ์ˆ˜ ์žˆ๊ฒŒ ์ฝ”๋“œ๋ฅผ ์ž‘์„ฑ

<%@ page contentType="text/html; charset=utf-8" %>
<html>
<head>
<title>Directives Tag</title>
</head>
<body>
    <h2>contentType ๋””๋ ‰ํ‹ฐ๋ธŒ ํƒœ๊ทธ</h2>
    <h4>text/html : HTML ์ถœ๋ ฅ</h4>
    <h4>charset=utf-8 : ๋ฌธ์ž ์ธ์ฝ”๋”ฉ</h4>
</body>
</html>
<%@ page pageEncoding= "utf-8"%>
<html>
<head>
<title>Directives Tag</title>
</head>
<body>
    <h2>contentType ๋””๋ ‰ํ‹ฐ๋ธŒ ํƒœ๊ทธ</h2>
    <h4>text/html : HTML ์ถœ๋ ฅ</h4>
    <h4>charset=utf-8 : ๋ฌธ์ž ์ธ์ฝ”๋”ฉ</h4>
</body>
</html>

์ด๋ ‡๊ฒŒ ๋‘๊ฐ€์ง€ ๋ฐฉ๋ฒ•์ด ์žˆ์ง€๋งŒ ์ฒซ ๋ฒˆ์งธ ๋””๋ ‰ํ‹ฐ๋ธŒ๋Š” ๋ธŒ๋ผ์šฐ์ €์— ์ „์†ก๋˜๋Š” ์ฝ˜ํ…์ธ ์˜ ํƒ€์ž…๊ณผ ํ•ด๋‹น ์ฝ˜ํ…์ธ ์˜ ๋ฌธ์ž ์ธ์ฝ”๋”ฉ์„ ์„ค์ •ํ•˜๋Š” ๋ฐ˜๋ฉด, ๋‘ ๋ฒˆ์งธ ๋””๋ ‰ํ‹ฐ๋ธŒ๋Š” JSP ํŽ˜์ด์ง€ ๋‚ด์˜ ์†Œ์Šค ์ฝ”๋“œ์˜ ์ธ์ฝ”๋”ฉ์„ ์„ค์ •ํ•ฉ๋‹ˆ๋‹ค.

# ์™ธ๋ถ€ jspํŒŒ์ผ์„ ํฌํ•จ ์‹œ์ผœ๋ณด์ž

<%@ page contentType="text/html; charset=utf-8"%>
<html>
<head>
<title>Directives Tag</title>
</head>
<body>
	<h4>ํ—ค๋” ํŽ˜์ด์ง€ ์˜์—ญ์ž…๋‹ˆ๋‹ค</h4>
</body>
</html>

์œ„์˜ ์ฝ”๋“œ์ฒ˜๋Ÿผ include01_ header.jspํŒŒ์ผ์„ ์ƒ์„ฑํ•˜๊ณ  ์ด ํŒŒ์ผ์„ include01.jspํŒŒ์ผ์— ํฌํ•จ ์‹œ์ผœ๋ณด๋ ค๊ณ  ํ•œ๋‹ค.

<%@ page contentType="text/html; charset=utf-8"%>
<html>
<head>
<title>Directives Tag</title>
</head>
<body>
	<%@ include file="include01_header.jsp"%>
	<h4>---------- ํ˜„์žฌ ํŽ˜์ด์ง€ ์˜์—ญ -------------</h4>
</body>
</html>

์œ„์˜ ์ฝ”๋“œ ์ฒ˜๋Ÿผ <%@ include file="include01_header.jsp"%>๋ฅผ ์‚ฝ์ž…ํ•ด์„œ include01_ header.jspํŒŒ์ผ์„ ๊ฐ€์ ธ์˜ฌ ์ˆ˜ ์žˆ๋‹ค. ์ด๋ ‡๊ฒŒ ์ฝ”๋“œ๋ฅผ ์ž‘์„ฑํ•˜๊ณ  ํ†ฐ์บฃ์„ ํ†ตํ•ด์„œ ํฌ๋กฌ์œผ๋กœ ๋ธŒ๋ผ์šฐ์ €์— ๋„์šฐ๋ฉด ์•„๋ž˜์™€ ๊ฐ™์€ ๊ฒฐ๊ณผ๊ฐ€ ๋‚˜์˜จ๋‹ค.

 

728x90

'๐Ÿ“•JAVA > jsp' ์นดํ…Œ๊ณ ๋ฆฌ์˜ ๋‹ค๋ฅธ ๊ธ€

5week  (0) 2024.04.04
4week  (0) 2024.03.28
2week  (0) 2024.03.20
OT_1week  (0) 2024.03.07
Comments