Exception in thread "main" java.lang.NoClassDefFoundError: javax/xml/bind/JAXBException at org.docx4j.convert.in.Doc.convert(Doc.java:64) at com.yeokhengmeng.docstopdfconverter.DocToPDFConverter.getMLPackage(DocToPDFConverter.java:49) at com.yeokhengmeng.docstopdfconverter.DocToPDFConverter.convert(DocToPDFConverter.java:29) at com.yeokhengmeng.docstopdfconverter.MainClass.main(MainClass.java:43..
[오류해결] 단순하게 http:// 가 빠져있기 때문에 이런 오류가 발생한다. 호출하려는 URI 앞에 http:// 를 붙여주면 오류가 해결 된다. api.get("api.openweathermap.org/"); api.get("http://api.openweathermap.org/"); URI (x) http:// + URI (O)
class, interface, or enum expected 중괄호 하나 더 써서 생긴 문제. 없애주면 해결
yarn start 하면 error Command "react-scripts" not found. 발생or 'react-scripts'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다. 에러 원인 : 명령어를 읽을 수 없다고 로그가 찍힌 것을 확인할 수 있습니다. 아무래도 프로젝트 경로가 기존과 다르거나, 다른 프로젝트를 사용할 때 이런 에러가 종종 발생하고는 합니다. 해결 : cd src/main/react경로npm update npm install 후에 다시 yarn start 하면 정상적으로 됨.