devlog 썸네일형 리스트형 Webpack & Spring Security Refused to execute script from 'http://localhost:8080/user/login' because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled. 오류에 관한 해결방법 개발환경 thymeleaf 3.0.11 Spring Boot 2.2.5 IntelliJ Ultimate 2020.1 JDK 8 jQuery 2.1.4 Gradle Webpack 발생 spring security 사용 시 아래처럼 모든 url 접근 가능하게 사용하다가 주석 후에 리소스 접근 불가로 발생 .antMatchers("/**").permitAll() 오류 stack strace 2login:1 Refused to execute script from 'http://localhost:8080/user/login' because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled. 원인 WebSec.. 더보기 jQuery ajax POST 405 오류에 관한 해결 방법 개발환경 thymeleaf 3.0.11 Spring Boot 2.2.5 IntelliJ Ultimate 2020.1 JDK 8 jQuery 2.1.4 Gradle Webpack 발생 spring security 사용 중 ajax post 방식으로 호출 시 405 에러 발생 오류 stack strace POST http://localhost:8080/user/checkDuplicate 405 원인 spring security 의 _csrf_header만 넘기고 _csrf 값을 넘기지 않음 해결 AS-IS beforeSend: function (xhr) { xhr.setRequestHeader($("meta[name='_csrf_header']").attr("content")); } TO-BE beforeS.. 더보기 ajax 호출시 발생하는 jquery.js: Uncaught TypeError: Cannot read property 'toLowerCase' of undefined 오류에 관한 해결 방법 개발환경 thymeleaf 3.0.11 Spring Boot 2.2.5 IntelliJ Ultimate 2020.1 JDK 8 jQuery 2.1.4 Gradle webpack 발생 회원가입 화면 개발중에 아이디 중복체크를 위해 ajax 사용 시 toLowerCase를 찾을 수 없다는 오류가 발생 form 태그는 사용하지 않음. jquery.js:9463 Uncaught TypeError: Cannot read property 'toLowerCase' of undefined at Object.setRequestHeader (jquery.js:9463) at Object.beforeSend (util.js:11) at Function.ajax (jquery.js:9640) at Module.ajax (ut.. 더보기 Springboot 기반에 git, npm을 사용한 webpack 환경구축 webpack 작업 브랜치 생성(Optional) 기존 작업 중인 저장소에서 바로 작업하여 커밋하는 방법도 있습니다. 하지만 작업을 분리하기 위해서 webpack 작업용 브랜치를 생성하겠습니다. webpack 브랜치에서 작업 후 메인 브랜치에 rebase/merge 할 예정입니다. > cd 프로젝트 루트 폴더 > git checkout -b webpack Switched to a new branch 'webpack' 로컬 환경에 webpack 브랜치가 새로 생성되었고 git branch 명령어를 입력하면 master 브랜치에서 webpack 브랜치로 전환이 된 것을 확인할 수 있습니다. > git branch master * webpack 하지만 로컬에 브랜치를 생성했다고 끝이 아닙니다. git pull.. 더보기 '' is an incorrect path for a scene file. BuildPlayer expects paths relative to the project folder. 에러 해결방법 UnityEditor.BuildPlayerWindow+BuildMethodException: '' is an incorrect path for a scene file. BuildPlayer expects paths relative to the project folder. at UnityEditor.BuildPlayerWindow+DefaultBuildMethods.BuildPlayer (BuildPlayerOptions options) [0x0021f] in C:\buildslave\unity\build\Editor\Mono\BuildPlayerWindowBuildMethods.cs:182 at UnityEditor.BuildPlayerWindow.CallBuildMethods (Boolean askFo.. 더보기 이전 1 2 3 4 5 다음