본문 바로가기

반응형

에러

[Spring] cvc-id.3 [에러] spring 프로젝트를 만들던 중, web.xml에서 아래와 같은 에러가 발생했다. cvc-id.3: A field of identity constraint 'web-common-servlet-name-uniqueness' matched element 'web-app', but this element does not have a simple type. [해결] 해당 에러의 해결방법은 아래의 web-app 태그 부분의 xmlns의 java를 아래처럼 바꿔주면 된다. 즉, Java로 첫글자만 대문자로 바꿔주면 된다. 더보기
[H2] Sorry, remote connections('webAllowOthers') h2가 잘 작동하다가 갑자기 Sorry, remote connections('webAllowOthers') are disabled on this server. 라고 화면에 표시되면서 에러가 발생했다. [해결] h2를 실행할 때 뒤에 -webAllowOthers 를 붙여주면 된다. 예를 들어 아래와 같이 실행해주면 된다. 더보기
[React/Firebase] TypeError: firebase_compat_app__WEBPACK_IMPORTED_MODULE_23__.default.firestore is not a function 에러 해결 파이어베이스가 버전이 올라가면서 또 문법들이 바뀌어서 생긴 문제이다. collection.get 이 바뀌었다. getDocs(collection()) 이런 식으로 바뀌었다. 아래의 예시를 참고하자. 이전 버전 let db = firebase.firestore(); db.collection("children").get().then((querySnapshot) => { querySnapshot.forEach((doc) => { console.log(doc.data()); }); }); 바뀐 버전 import {getDocs, getFirestore} from 'firebase/firestore'; import {collection} from 'firebase/firestore'; let db = getFir.. 더보기
[React] /bin/sh: react-scripts: command not found 에러 해결 (+ react-scripts란?) 방법 1. 터미널에서 react-scripts 라이브러리 전역 설치 yarn add global react-scripts 방법 2. package.json이 있는 디렉토리에서 react-scripts 라이브러리 설치 yarn add react-scripts npm install -save react-scripts 참고 : react-scripts란? react-scripts가 뭔지 알려면 create-react-app이 뭔지를 알아야 한다. create-react-app은 귀찮은 설정들을 대신해준다. 구성하지 않고 프로젝트를 시작할 수 있어서 react 프로젝트를 쉽게 시작할 수 있게 해주는 모듈이다. react-scripts는 이러한 create-react-app 스타터팩의 스크립트 세트이다. 즉, c.. 더보기
[Flutter] 플러터(Flutter) Unable to load asset 에러 해결 방법 (매우 간단) 간단하다. 터미널에 flutter clean 실행 후 다시 빌드한다. 더보기
[R studio 오류] error reading R script (), system error2 (No such file or directory); Unable to find libR.dylib in expected locationswithin R Home directory /Library/Frameworks/R.framework/Resources R studio를 깐 직후 만나게 된 위와 같은 에러. 이유는 간단하다. R을 깔지 않고, R studio를 열었기 때문. 아래의 사이트에서 R을 먼저 설치하고 R studio를 열도록 하자. https://cran.r-project.org/ The Comprehensive R Archive Network cran.r-project.org 더보기

반응형