자바스프링

    검색하여 게시글 찾기

    검색하여 게시글 찾기

    select * from board insert into board(title, writer, content) values(#{title}, #{writer}, #{content}) select * from board where idx = #{idx} delete from board where idx = #{idx} update board set count = count+1 where idx=#{idx} select * from board where title like #{search} package com.smhrd.mapper; import java.util.List; import org.apache.ibatis.annotations.Update; import com.smhrd.domain.Board..

    게시글 작성하기(SpringMVC02(Ajax + JSON))

    게시글 작성하기(SpringMVC02(Ajax + JSON))

    function goList(cpath){ location.href = cpath + "/boardList.do" } function goUpdate(cpath, idx){ location.href = cpath + '/boardUpdate.do?idx='+idx } function goDelete(cpath, idx){ // 삭제시켜 줄 컨트롤러로 이동 // 삭제 후 boardList.jsp 로 // url/value1/value2/..... location.href =cpath+'/boardDelete.do/'+idx; } function loadBoard(){ // ajax를 이용해서 게시물 목록 가져오기 $.ajax({ url : 'boardList.do', // 요청할 주소 type : 'pos..

    게시판 글 수정 SpringMVC02(Ajax + JSON)

    게시판 글 수정 SpringMVC02(Ajax + JSON)

    function goList(cpath){ location.href = cpath + "/boardList.do" } function goUpdate(cpath, idx){ location.href = cpath + '/boardUpdate.do?idx='+idx } function goDelete(cpath, idx){ // 삭제시켜 줄 컨트롤러로 이동 // 삭제 후 boardList.jsp 로 // url/value1/value2/..... location.href =cpath+'/boardDelete.do/'+idx; } function loadBoard(){ // ajax를 이용해서 게시물 목록 가져오기 $.ajax({ url : 'boardList.do', // 요청할 주소 type : 'pos..

    게시판 수정

    게시판 수정

    package com.smhrd.domain; import lombok.Data; import lombok.NoArgsConstructor; @Data // Getter/Setter/toString @NoArgsConstructor public class Board { // 1. Class 필드명 == Table 컬럼 // 2. 기본생성자 // 글번호 private int idx; // 제목 private String title; // 작성자 private String writer; // 내용 private String content; // 작성일 private String indate; // 조회수 private int count; } select * from board insert into board..

    게시판 글 삭제

    게시판 글 삭제

    package com.smhrd.mapper; import java.util.List; import com.smhrd.domain.Board; // DAO를 interface로 만든다 public interface BoardMapper { // ********** 연결된 xml파일이랑 이름이 같아야함 // DB 연결은 다른 파일에서 진행 // 추상메서드 // Spring에서 쓸때는 추상메서드만 만들고, mapper.xml이랑 맵핑 // 메서드 이름 xml의 id mapping public List boardList(); // resultType ==> 리턴타입 // parameterType ==> 매개변수 public int boardInsert(Board vo); public Board boardCon..