일기장/오류일기 4

[SpringBoot] java.lang.ClassNotFoundException

가끔 main class 를 찾을 수 없다고 빌드를 안해주는 에러가 날 때가 있다. 곤란하다. project > properties > Java Build Path > Order and Export 에서 JRE 선택을 해준 후 적용시켜주면 해결된다. 다른 방법은 참고한 블로그 링크로,, https://maternalgrandfather.tistory.com/entry/%EC%9E%90%EB%B0%94-javalangClassNotFoundException-%EC%98%A4%EB%A5%98-%EC%97%84%EC%B2%AD-%EA%B0%84%EB%8B%A8%ED%95%9C-%ED%95%B4%EA%B2%B0%EB%B2%95 (자바) java.lang.ClassNotFoundException 오류 엄청 간단한..

[Jenkins] Failed to connect to repository: ~~

Jenkins랑 GitLab이랑 연동을 하는 중에 Failed to connect to repository: command "git ls-remote -h -- https://gitlab.com/--/--.git head" returned status code 128 이런 에러가 자꾸 나서 연동이 안됐다. 이유는 credential을 만들 때 Username에 gitlab 아이디를 넣어야하는데 다른걸 넣어줘서 발생하는 오류였다. 다시 Username에 아이디 잘 넣고, password에 git token 잘 넣고 다시 생성해주니 성공했다ㅠ https://ojm1484.tistory.com/58 Jenkins GitLab 연동하기 1. Jenkins 관리의 ManageCredentials로 이동한다. 2...

[Vue.js] EsLint 오류 잡아보기

vue.js 를 처음 시작했다. 얼레벌레 따라하는데 알 수 없는 오류들이 와장창 났다. mixed spaces and tabs, "OO" is defined but never used component name "OO" should always be multi-word 알아보니까 EsLint가 오류를 걸러줄 때 저런 아이들 까지 모두 걸리기 때문에 원치 않으면 따로 설정을 해줘야 한다고 한다. 처음 찾아본거는 vue.config.js 파일에 module.exports = defineConfig({ transpileDependencies: true, lintOnSave : false }) lintOnSave:false 를 해주면 된다고 해서 했는데 오류가 나진 않는다. 그런데 왠지 모든 오류를 다 무시해버..

@requestParam | type String not present 오류

파라미터를 @requestParam으로 걸었더니, type String not present 오류가 났다. 타입 잘못된건 없는데 이상했다. @PostMapping("/regCompany") @ResponseBody public Map companyRegist(@Param(value="companynm")String companynm, @Param(value="feerate") String feerate,Model model) { @Param으로 바꿔주니 해결됐다! 이유는 /regCompany는 파라미터를 꺼내와야하는데 요청하는 requestParam을 해주니까 났던것같다..! 요청받을 파람이 없어서?!? 내가 이해한 바로는 그렇다..!! 아니라면 알려주십쇼!