error22 [React] antd 모달로 로그인 창 구현(antd modal signin) React 프로젝트 개발 구현 문제 상황 ant- design 으로 그냥 로그인 페이지, 그냥 모달 페이지는 많이 있는데 모달로 로그인 구현하는게 많이 힘들었다.. 삽질 계속 하다가.. 나중에 까먹지 않게 남겨놓기.. 처음에는 header안에 넣어놨는데 리액트니까 컴포넌트로 따로 빼놓자..해서 처음부터 다시 했다.. input창은 그냥 복사붙여넣기 하면 된다.(나중에 유효성 검사도 넣어야지) - 배운 것 : 부모 컴포넌트 => 하위 컴포넌트로 props 값 넘기는 거는 알았는데 하위 컴포넌트 => 부모 컴포넌트로 state값 변경하는 것 알게 되었다! 함수로 사용했다! 1. Modal.js(하위 컴포넌트) import React from 'react'; import { Modal, Input, Form .. 2023. 1. 28. "Access denied for user ''@'localhost' (using password: YES)", 문제 상황 code: 'ER_ACCESS_DENIED_ERROR', errno: 1045, sqlState: '28000', sqlMessage: "Access denied for user ''@'localhost' (using password: YES)", sql: undefined }, original: Error: Access denied for user ''@'localhost' (using password: YES) 로컬에서는 연동 되는데, 다른 서버에서 DB 연동을 하려고 했는데 계속 해서 오류 1. 권한 주기 설정함 유저랑 비번 DB와 동일하게! CREATE USER 'user'@'%' IDENTIFIED BY '비밀번호'; GRANT ALL PRIVILEGES ON *.* TO 'user'.. 2022. 12. 17. el태그로 반복문 처리할 때 오류(feat jsp 표현식) 문제 상황 페이징 처리를 하는데(부트스트랩 사용) 처음에 Prev와 Next 버튼은 적용이 안됐는데 부분은 적용이 안됐다. for문으로 돌려서 값이 잘 나왔지만 누르면 넘어가야 하는데 안넘어가고 이상한 숫자가 넘어와서 넘어가지 않았다. JSP파일 Prev Prev ${p} ${p} Next Next JS파일 JS파일에서는 JSP el 표현식을 사용할 수 없어서 1}"> Prev ${p} ${p} Next Next 변경하고 난 뒤의 JS파일 function goPrev(gp, category){ let goPrev = gp-1; location.href="/board/shareAndReqList?currentPage="+goPrev+"&category="+category+""; } function goPa.. 2022. 4. 12. 페이징처리를 할 때 안 넘어가는 이유(For input string:2") Validation failed for object='pagingVO'. Error count: 1 org.springframework.validation.BindException: org.springframework.validation.BeanPropertyBindingResult: 1 errors Field error in object 'pagingVO' on field 'currentPage': rejected value ['2']; codes [typeMismatch.pagingVO.currentPage,typeMismatch.currentPage,typeMismatch.int,typeMismatch]; arguments [org.springframework.context.support.Defau.. 2022. 4. 12. join문을 사용해서 selectList와 selectOne 문제 상황 및 해결 member테이블에 있는 유저 정보를 board 정보에 나타내기 위해서 MapperXml에서 조인문을 사용해서 하려고 했지만 이렇게 resultType을 한 테이블의 VO만 적으니까 오류가 났다. Join문을 사용해서 Select를 할 때는 Map을 써야 한 다는 것을 알게되었다. 여러 데이터를 가져올 때(selectList): 리스트 select b.no, b.title, date_format(b.createdate, "%m/%d %H:%i")createdate, b.thumbnailImg, m.address, m.nickname from board b join member m on m.userid = b.userid order by no desc 데이터 한 개를 가져올 때(sele.. 2022. 4. 10. [빈 생성 실패 애너테이션 필요]dao in ShareBrdServiceImpl required a bean of type 'DAO' that could not be found. 문제 상황 Service 인터페이스를 구현한 ServiceImpl에서 DAO를 사용하는데 DAO의 bean이 없다고 뜬 것 같았다. Field dao in com.semiproject.soboon.service.ShareBrdServiceImpl required a bean of type 'com.semiproject.soboon.dao.ShareBrdDAO' that could not be found. The injection point has the following annotations: - @javax.inject.Inject() Action: Consider defining a bean of type 'com.semiproject.soboon.dao.ShareBrdDAO' in your conf.. 2022. 4. 9. 이전 1 2 3 4 다음