본문 바로가기

개발중/troubleshooting

(87)
JAVA MYSQL 연동 중 SSL 에러 Fri Apr 23 11:15:47 KST 2021 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitl..
vue 에러 - npm ERR! enoent ENOENT: no such file or directory, open ~~~~~~~~~ \packge.json 🖤 글이 도움이 되었다면 유튜브 클릭 해주세요 🖤 https://youtu.be/bz8h5adAHNc npm ERR! enoent ENOENT: no such file or directory, open ~~~~~~~~~ \packge.json 멀쩡히 있는 파일을 왜 갑자기 못 찾는다냐 ಥ_ಥ npm init 를 해서 다시 시도 했는데 이게 뭐람 이번에는 다른 에러 이런 에러가 있었는데, 0 info it worked if it ends with ok 1 verbose cli [ 1 verbose cli 'C:\\Program Files\\nodejs\\node.exe', 1 verbose cli 'C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.j..
vue + java serve 안될 때
Excel 파일 (지정된 파일을 찾을 수 없습니다) Excel 파일을 읽어오는 과정에서 지정된 파일을 찾을 수 없다는 경로가 발생했다 문제는 여기서 발생했다. 액셀 파일의 이름이 test.xlsx 라서 test.xlsx.xlsx 라고 읽혔다고 한다. 아래 처럼 바꾸고 하니까 실행이 잘된다.
[mybatis 에러 해결] Packet for query is too large (34530395 > 20971520). You can change this value on the server by setting the max_allowed_packet' variable. 실행이 잘 되던 코드가 이런 에러를 발생하면서 실행이 되지를 않았다. Packet for query is too large (34530395 > 20971520). You can change this value on the server by setting the max_allowed_packet' variable. mysql의 max_allowed_packet 설정값은 mysql이 클라이언트와 통신할 때 핸들링 할 수 있는 데이터의 양을 의미합니다. 디폴트로는 1mb로 설정되어 있습니다. mysql 3.23버젼에선 이 값을 16mb까지 설정할 수 있고 4.0.1 이상부터는 1기가까지 가능합니다. 대량의 데이터를 mysql과 주고받을땐 connect timeout 시간이나 (혹시 server-side sc..
java.lang.NoSuchMethodException 클래스 이름.<init>() 🖤 글이 도움이 되었다면 유튜브 클릭 해주세요 🖤 비전공자 개발자 관련 영상 https://www.youtube.com/channel/UCgkxlLdjrlsFyp2GGxzY59A 디벨빈수 안녕하세요. 저는 2년차 #비전공자 #풀스택 #개발자 빈수 입니다. ლ(╹◡╹ლ) .. 구독 댓글과 좋아요 알림 설정 감자합니다. - 개발 블로그 : https://soobindeveloper8.tistory.com/ - 깃허브 : https://github.com www.youtube.com Spring 에서 DB 랑 연동하는 와중에 자꾸 에러가 발생했다. java.lang.NoSuchMethodException soo.bin.com.() 뭘 못찾는다고 아무리 봐도 매핑은 잘되어 있는데 처음에는 클래스 네임을 잘못 적..
vue 한글 인코딩 Vue 에서 한글이 깨진다. 이 방법은 안된다 여기도 해봤다. 응 안돼애 web.xml 에 이거 추가해보기 encodingFilter org.springframework.web.filter.CharacterEncodingFilter encoding UTF-8 forceEncoding true encodingFilter /* 해결 오예
Vue warnings potentially fixable with the `--fix` option. 글이 도움이 되었다면 유튜브 클릭 해주세요 🖤 이건 뭔 에러 일까 ? eslint.org/docs/2.0.0/rules/quotes Rule quotes Enforce Quote Style (quotes) JavaScript allows you to define strings in one of three ways: double quotes, single quotes, and backticks (as of ECMAScript 6). For example: var double = "double"; var single = 'single'; var backtick = `backtick`; Each of these eslint.org 아 뭔가 - 이거 사용해서 그런거 같다. 3 errors and 0 warnin..