macos에서 maven install시 아래와 같은 오류가 발생했을경우(환경이 java9일떄 방생하는 문제인듯) org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframework/boot/autoconfigu)re/orm/jpa/HibernateJpaConfiguration.class]: Invocation of init method failed; nested exception is java.lang.NoClassDefFoundError: javax/xml/bind/JAXBExcep..
vue-cli 실행시 아래와 같은 에러가 나올 경우 Module build failed: Error: "extract-text-webpack-plugin" loader is used without the corresponding plugin, 윈도우 환경이라면 명령어프롬프트(cmd)를 관리자 권한으로 실행 후 npm install -> npm run dev 해보도록 하자. if you use windows, open the cmd with administrator authority. and npm install -> npm run dev
로컬에선 잘 돌아가는데, jar로 build하고 외부에서 실행시켜보면 아래와 같이 에러 발생 org.thymeleaf.exceptions.TemplateInputException: Error resolving template "/xxxxx/main", template might not exist or might not be accessible by any of the configured Template Resolvers 1시간동안 삽질해본 결과 controller에서 return 해주는 string 값에 문제. @RequestMapping("....") public String ...... {return "/xxxxx/main"; // ide에서 실행했을 경우 이상없이 표시 return "xxxxx/ma..
Could not find tools.jar. Please check that .... contains a valid JDK installation. 와 같은 오류가 날 경우.. Window -> Prefrences -> Gradle(STS) -> JDK 설정 (jre는 안됨)
casperjs를 테스트하던 도중 mac에서는 한글이 깨지지 않았는데 윈도우에서는 깨진다. 캐릭터셋이 안맞아서 그런건데 콘솔창에 아래와 같이 입력하여 UTF-8로 바꿔준다. 한글이 깨짐없이 잘 나온다. chcp 65001 추가로 윈도우에서 괜찮은 포터블 콘솔프로그램을 추천한다.https://conemu.github.io/
윈도우 환경에서 casperjs를 실행시켰을때casperjs did you install phantomj? 라는 에러메세지가 나오는 경우가 있다. 이럴 경우 환경변수에 아래와 같이 추가해주면 이상없이 동작한다. PHANTOMJS_EXECUTABLE=설치위치/bin/phantomjs