“Uncaught (in promise) TypeError Cannot read property ‘protocol’ of undefined” Vue 2.x 버전에서는 axios 를 사용할 때, Vue.use(axios) 와 같이 사용하면 위와 같은 에러가 발생한다. 그러므로 다음과 같이 사용해야 한다. Vue.use(axios); // Incorrect Vue.prototype.$http = axios; // Correct 예시 ) import Vue from 'vue' import Index from '@/views/Index' import store from '@/store/store' import router from '@/router/router' // import ElementUI from 'e..
리눅스 압축풀기 WAR 파일 만들기 1. command line 상에서 WAR파일을 만들고자 하는 폴더로 이동 2. jar cvf .war * 입력 (예 : jar cvf test.war *) 3. 해당 폴더내에 war파일 생성완료 WAR 파일 압축풀기 1. command line 상에서 WAR파일이 있는곳으로 이동 2. jar xvf .war 입력 (예 : jar xvf test.war) 2-1. unzip test.war -d /var/lib/tomcat7/webapps/test (-d 이용 다른 폴더로 압축풀기) unzip test.war (해당 폴더 내에서) 3. 해당 폴더내에 압축이 풀림 * 만약 해당 폴더가 아닌 다른 폴더에 압축을 풀고 싶다면 1. 압축을 풀고자 하는 폴더를 만들고 comma..
ajax로 파일업로드할떄 contentType: false 없으면 아래와 같은 에러가 뜸. 심각: Servlet.service() for servlet [appServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.multipart.MultipartException: The current request is not a multipart request] with root causeorg.springframework.web.multipart.MultipartException: The current request is not a multipart re..