본문으로 바로가기

구현 내용

1. OPEN API 를 이용해 갖고온 data를 detail 페이지에 뿌려줌

OPEN API를 이용해 data 갖고 오는 내용 : https://sallykim5087.tistory.com/187

 

2. bootstrap을 이용해 반응형 페이지로 만듬.

 

 

핵심 코드 

1
2
3
4
5
6
7
8
9
10
11
12
13
    @Override
    public void getData(HttpServletRequest request) {
        
        int seq=Integer.parseInt(request.getParameter("seq"));
        
        //DB에 있는 데이터 갖고 오기
        ApiDto apiDto = XmlParsing.getData(seq);
        
        //댓글관련 코드 생략
 
        request.setAttribute("exhibitionDto", apiDto);
    }
cs

detail 페이지로 이동할때 파라미터로 갖고오는 글 번호를

XmlParsing 클래스의 getData() 메소드에 전달하여 data를 ApiDto에 담는다.

그리고 request 객체에 담아 detail 페이지로 보낸다.