전체 글(44)
-
[ERROR][MessageApp] gyp ERR! find Python
gyp ERR! find Python gyp ERR! find Python Python is not set from command line or npm configuration gyp ERR! find Python Python is not set from environment variable PYTHON gyp ERR! find Python checking if "python" can be used gyp ERR! find Python - "python" is not in PATH or produced an error gyp ERR! find Python checking if "python2" can be used ERROR 내용 파이썬을 찾지 못한다 해결 방법 파이썬을 설치하지 않아서 그런가? 싶어서 ..
2020.11.29 -
[ERROR][MessageApp] MySQLSyntaxErrorException
메세지 전달 오류 { "timestamp": "2020-10-19T06:40:44.437+0000", "status": 404, "error": "Not Found", "message": "No message available", "path": "/messages" } terminal : 2020-10-19 15:50:34.835 DEBUG 24320 --- [nio-8080-exec-] app.messages.AuditingFilter : Request[uri=/messages, method=POST] completed in 2ms ERROR 내용 postman에서 send했을 때 메세지가 안받아짐(404 에러... 에러메세지 내용 : 메세지가 이용불가다.) 해결 방법 해결 : message가 "No ..
2020.11.29 -
[ERROR][TaskAgile] .jdbc4.MySQLSyntaxErrorException: Table 'db.table' doesn't exist
2020-11-26 23:23:00.422 WARN 19116 --- [nio-8080-exec-3] o.h.engine.jdbc.spi.SqlExceptionHelper : SQL Error: 1146, SQLState: 42S02 2020-11-26 23:23:00.423 ERROR 19116 --- [nio-8080-exec-3] o.h.engine.jdbc.spi.SqlExceptionHelper : Table 'task_agile.user' doesn't exist 2020-11-26 23:23:00.426 ERROR 19116 --- [nio-8080-exec-3] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [d..
2020.11.27 -
[git] git 사용법, README.md 작성법 참고사이트
git 사용법 요약 git add *// 모든 파일 add git rm --cached -r [file name]// 로컬파일은 남기고 github에 올라가있는 파일을 제거 git status// 삭제되었는지 변경사항 확인 git commit -m "message" git push -u origin master// push까지 완료해야 github에서 해당 폴더가 제거된다. local에서 파일 업로드 -> staged init git init init 제거 rm -r .git// .git 폴더 삭제 = git local 저장소 지정 해제 git remote -v// 저장소 경로 확인 add git add * git add -u// 수정하거나 삭제된 파일을 반영할 수 있다. add 취소(rm) git rm..
2020.11.26 -
[ERROR][TaskAgile] The type 클래스명 is already defined
The type 클래스명 is already defined ERROR 내용 클래스명이 이미 정의되어있다.( 해당 패키지 내에 같은 이름의 클래스가 두개 이상이다.) 해결 방법 해당 패키지 내에 같은 이름의 클래스가 있는지 확인 후 필요없는 것을 삭제 참고 사이트 : m.blog.naver.com/PostView.nhn?blogId=ssebbak&logNo=150035415296&proxyReferer=https:%2F%2Fwww.google.com%2F
2020.11.26 -
[TaskAgile] 02. 회원가입 구현
회원가입 ※서드 파티 라이브러리 : 제 3자 라이브러리. 효율적인 개발을 위해, plugin, library, framework를 사용하는데, 이것들처럼 제 3자로써 중간다리 역할을 하는 것을 3rd party라고 한다. error Strings must use singlequote quotes -> script 안에서는 "대신 '를 쓸 것! 등록 컨트롤러 테스트 도메인 모델로 회원가입 구현 ※ @Service 어노테이션 : 해당 클래스를 활용하는 client를 위한 연산을 제공하는 클래스에 적용 ※ @Column 어노테이션 : hbm2dd1 기능(하이버네이트) 사용할 때 이 것을 사용 도메인 주도 설계 Application Service(애플리케이션 서비스) 모델의 작업만 조정 트랜젝션을 통제(@Tra..
2020.11.26