게시판만들기7

2020. 6. 22. 13:45jsp ,oracle 을 이용한 게시판 만들기

이번주제: 게시판 메인페이지 디자인 

먼저 main.jsp파일 복사하여 bbs.jsp파일을 생성하여 준다.

그리고 나서 메인의 active 를 삭제해주고 게시판 부분에 추가해준다.

 

하고나서 

다음과 같이 <div class="container">를 생성하여 디자인을 위한 테이블을 생성하여 준다.

 

 

<%@ page language="java" contentType="text/html; charset=UTF-8"

    pageEncoding="UTF-8"%>

<%@ page import="java.io.PrintWriter" %>

<!DOCTYPE html>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset= UTF-8">

<meta name="viewport" content="width = devide-width", initial-scale="1">

<link rel="stylesheet" href="css/bootstrap.css">

<title>JSP 게시판 웹 사이트</title>

</head>

<body>

<%

String userID = null;

if (session.getAttribute("userID") !=null){

userID = (String) session.getAttribute("userID");

}

%>

<nav class="navbar navbar-default">

<div class="navbar-header">

<button type="button" class="navbar-toggle collapsed"

        data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"

        aria-expended="false">

        <span class="icon-bar"></span>

        <span class="icon-bar"></span>

        <span class="icon-bar"></span>

  </button>

  <a class="navbar-brand" href="main.jsp">JSP 게시판 웹사이트</a>

</div>

<div class="collapse navbar-collapse" id="bs example-navbar-collapse-1">

<ul class="nav navbar-nav">

<li><a href="main.jsp">메인</a></li>  

<li class="active"><a href="bbs.jsp">게시판</a></li>

</ul>

<%

if(userID == null){ //로그인상태 아닐떄 

%>

<ul class="nav navbar-nav navbar-right">

<li class="dropdown">  

<a href="#" class="dropdown-toggle"

data-toggle="dropdown" role="button" aria-haspopup="true"

aria-expended="false">접속하기<span class="caret"></span></a>

  <ul class="dropdown-menu">

<li><a href="login.jsp">로그인</a></li>

<li><a href="join.jsp">회원가입</a></li>    

  </ul>

  </li>

  </ul>

<% 

}else{ //로그인 상태

%>

<ul class="nav navbar-nav navbar-right">

<li class="dropdown">  

<a href="#" class="dropdown-toggle"

data-toggle="dropdown" role="button" aria-haspopup="true"

aria-expended="false">회원관리<span class="caret"></span></a>

  <ul class="dropdown-menu">

<li><a href="logoutAction.jsp">로그아웃</a></li>    

  </ul>

  </li>

  </ul>

<% 

}

%>

 

</div>

</nav>

<div class ="container">

<div class = "row">

<table class="table table-striped" style="text-align: center; border: 1px solid #dddddd">

<thead> <!-- table의 제목부분 -->

<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>2017-05-04</td>  

</tr>

</tbody>

</table>

<a href="write.jsp" class="btn btn-primary pull-right">글쓰기</a>

</div>

</div>

<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>

<script src="js/bootstrap.js"></script>

</body> 

</html>

 

다 작성하고 나서 프로그램을 실행시켜보면 다음과 같은 게시판을 볼수있다.

출처: https://www.youtube.com/watch?v=pCqaGoexV5c&list=PLRx0vPvlEmdAZv_okJzox5wj2gG_fNh_6&index=8

'jsp ,oracle 을 이용한 게시판 만들기' 카테고리의 다른 글

게시판만들기9  (0) 2020.06.23
게시판만들기8  (0) 2020.06.22
게시판만들기6  (0) 2020.06.22
게시판만들기5  (0) 2020.06.20
게시판만들기4  (0) 2020.06.19