반응형

분류 전체보기 1141

update_board_page.do 수정글쓰기 내용이 넘어가지 않을때

글수정을 눌렀을 때 빈 공백으로 넘겨져서, read 페이지랑 뭐가 다른지 몰랐다. @RequestMapping("update_board_page.do") public String updateBoardPage(Model mo, int content_no) { HashMap map = contentService.getContent(content_no); mo.addAttribute("board_text", map); System.out.println("게시물 업데이트 페이지"); return "content/board_update_page"; } 알고보니, 해당 메소드에서 아래값을 넣어주지 않은 것 추가적으로 헷갈리는 게 model 은 무엇일까?

카테고리 없음 2021.01.12

[오류] It's likely that neither a Result Type nor a Result Map was specified.

Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.executor.ExecutorException: A query was run and no Result Maps were found for the Mapped Statement 'com.yu.recipe.content.mapper.ContentSQLMapper.selectByNo'. It's likely that neither a Result Type nor a Result Map was specified. ContentSQLMapper 에서 resultType을 빼먹으니 발생!

에러 및 오류 2021.01.12

update_content_process.do 가 적용되지 않을때

오류페이지가 뜨는 건 아니었지만, 무언가가 연결이 안돼서 그런지 계속 완료가 되지 않았었다. 알고보니....... update_content.do 페이지에서 content_no 를 넘겨주지 않아서 where content_no = #{content_no} 이 부분이 연결이 되지 않았었다! 글수정 페이지 닉네임 : ${board_text.memberVo.member_nickname} 제목 : 내용 : ${board_text.contentVo.content_text} 또 실수! hidden 으로 컨텐츠 넘버를 넘겨줘야 한다.

카테고리 없음 2021.01.10

[오류] Controller Class RequestMapping

package com.yu.recipe.member.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; @Controller @RequestMapping("/member/*") public class MemberController { @RequestMapping("main.do") public String main() { System.out.println("메인페이지 실행"); return "member/main"; } } Controller 생성시 class에도 RequestMapping을 해주지 않으면 실행이 안돼네......

카테고리 없음 2021.01.08
반응형