์ƒ๋‹จ nav๋ฐ”์—์„œ ๊ฒŒ์‹œํŒ์„ ๋ˆ„๋ฅด๋ฉด bbs.jsp ๋กœ ์ด๋™ํ•œ๋‹ค ์ด๋•Œ   bbs.jsp๋Š” ๊ฒŒ์‹œํŒ์˜ ๋ฉ”์ธ ํŽ˜์ด์ง€์ด๋‹ค.

 

์ด๋ฒˆ ์žฅ์—์„œ๋Š” ์ด bbs.jsp๋ฅผ ๊พธ๋ฉฐ์ฃผ๋„๋ก ํ•œ๋‹ค.

 

 

1. bbs.jsp ์ƒ์„ฑ

์šฐ์„  main.jsp๋ฅผ ๋ณต์‚ฌํ•˜์—ฌ  bbs.jsp๋ฅผ ์ƒ์„ฑํ•œ๋‹ค.

 

2. bbs.jsp ๋ฅผ ๊พธ๋ฉฐ์ฃผ๋Š” ์ฝ”๋“œ ์ž‘์„ฑ

ํ•ด๋‹น ํŒŒ์ผ ํ•˜๋‹จ( </nav> ์•„๋ž˜์™€ <script src="~~"> ์ฝ”๋“œ ์‚ฌ์ด) ์— ์•„๋ž˜์™€ ๊ฐ™์€ ์ฝ”๋“œ๋ฅผ ์ถ”๊ฐ€ํ•œ๋‹ค.

<div class="container">
        	<div class="row">
        		<table class="table table-striped" style="text-align: center; border: 1px solid #dddddd">
        		<thead>
        			<tr>
        				<th style="background-color: #eeeeee; text-align:center;">๋ฒˆํ˜ธ</th>
        				<th style="background-color: #eeeeee; text-align:center;">์ œ๋ชฉ</th>
        				<th style="background-color: #eeeeee; text-align:center;">์ž‘์„ฑ์ž</th>
        				<th style="background-color: #eeeeee; text-align:center;">์ž‘์„ฑ์ผ</th>
        			</tr>
        		</thead>
        		<tbody>
        			<tr>
        				<td>1</td>
        				<td>์•ˆ๋…•ํ•˜์„ธ์š”</td>
        				<td>ํ™๊ธธ๋™</td>
        				<td>2023-04-17</td>
        			</tr>
        		</tbody>
        		</table>
        		<a href="write.jsp" class="btn btn-primary pull-right">๊ธ€์“ฐ๊ธฐ</a>
        	</div>
        </div>

 

๊ฒฐ๊ณผ๋ฌผ 

+ Recent posts