Home
Volc의 블로그
Cancel

Failed to start bean 'documentationPluginsBootstrapper'; nested exception is java.lang.NullPointerException

Error swagger를 적용하기 위해 maven dependency에 다음과 같이 추가하였다. <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> ...

Index build failed :: caused by :: Can’t extract geo keys

Error mongoDB의 GeoJSON을 사용하기 위해 다음과 같이 mongoDB에 쿼리를 날렸더니 에러가 떴다. db.visitJeju.createIndex({location:"2dsphere"}) Error Error 해결 무엇때문인지 ObjectId(’6...

unable to find index for $geoNear query

Error mongoDB 데이터 { "_id" : ObjectId("6245f6edf2aa51bc5bae594c"), "name" : "제주커피박물관 Baum", "location" : { "type" : "Point", "coordinates" : [ 126.8990639, ...

The kernel appears to have died. It will restart automatically by using XGBoost

Error Jupyter notebook에서 XGBoost를 사용하기 위해 python -m pip install xgboost를 하였고 사용하려고 하니 다음과 같은 에러가 났다. The kernel appears to have died. It will restart automatically by using ...

MongoDB 랜섬웨어 감염

Error aws EC2에 mongoDB를 설치하였고 어느날 들어가니 데이터가 다 날아가고 이상한 말들이 적혀 있었다. 0.026 비트코인을 지불하면 잃어버린 데이터를 복구해주겠다는 것이고 무시할 경우 GDPR에 신고하여 법적인 책임을 물게 하겠다는 것이다. 다행히도 DB에는...

TypeError: 'int' object is not callable

Error python으로 알고리즘 문제를 풀던 중 len()함수가 도저히 먹히지가 않고 다음과 같은 에러가 계속 나왔다. Traceback (most recent call last): File "/Users/lyk/Documents/CPP/t.py", line 49, in <module> if...

sh: react-scripts: command not found

Error github에서 react가 있는 폴더를 pull을 하여 npm start 명령어를 실행하였지만 script가 없어 실행이 불가능하다고 다음과 같은 에러가 나왔다. > test@0.1.0 start > react-scripts start sh: react-scripts: command ...

No module named 'pandas_profiling’

Error env01이라는 내가 만든 conda 가상환경에서 pip install pandas-profiling 명령어로 pandas-profiling으로 설치 후 jupyter notebook에서 pandas_profiling 을 import 하였지만 다음과 같은 에러가 발생하였다. Error 해결 ...

Object of type 'Decimal' is not JSON serializable

Error 다음과 같이 flask에서 mysql db와 연동하여 값을 얻어와 json 형태로 바꿨을 때 error가 발생한다. def empall(self): all = [] try: conn = getConnection() cursor...

PermissionError: [Errno 13] Permission denied

Error mac에서 vscode로 flask app.py를 돌릴려고 하니 다음과 같은 에러가 발생하였다. Error 해결 다음 명령어로 app.py를 실행시킨다. sudo python app.py