Error 정리6 정적 리소스 관련 오류 Refused to apply style from ' ' is not a supported stylesheet MIME type, and strict MIME checking is enabled. 템플릿의 css와 js 적용중 역시 우려했던 에러가 났다.. 다른 프로젝트 할때도 템플릿을 적용할 때 한번은 꼭 애를 먹였던 에러라 걱정됐는데 또 나고 말았다... 흑흑 Refused to apply style from '' is not a supported stylesheet MIME type, and strict MIME checking is enabled. 에러 분서결과1. css나 js의 경로를 잘못 입력했을 경우spring: web: resources: static-locations: classpath:/static/ thymeleaf: prefix: classpath:/templates/ suffix: .htmlapplication.yml 파일 코드 중 일부 확인 .. 2024. 9. 24. [Junit Test] 테스트가 안될때 Execution failed for task ':test'.> No tests found for given includes: [com.example.toyproject1_wst.JDBCTest.testConnection](filter.includeTestsMatching)* Try:> Run with --stacktrace option to get the stack trace.> Run with --info or --debug option to get more log output.> Run with --scan to get full insights.> Get more help at https://help.gradle.org.BUILD FAILED in 3s4 actionable tasks: 2 exec.. 2024. 9. 4. 상태코드 405 서버 오류 (Postman 사용) 일단 코드 관리는 API로 React 에 넘겨주고 받을 생각이다. 때문에 데이터가 페이지로 보내지는지 확인할 필요가 있었다. 먼저 DB에 폐기물 분류 코드들을 넣고 Controller 로 데이터를 뿌리는 코드부터 먹히는지 테스트를 해보자@RequestMapping(value = "/codes/classifications", method = RequestMethod.POST, produces = "application/json; charset=UTF-8")@ResponseBody //@RequestMapping 의 형태는 name = value 형태가 되어야한다public Map CodeController(Common common) { Map resultMap = new HashMap(); Li.. 2024. 6. 20. [gradle.kts]Spring Boot & React 연동 에러 이제 백엔드 세팅이 끝났으니 프론트 세팅도 시작해봤다. 일단 유투브에있는 강의영상을 보면서 시도해봤다. 밑에 코드는 강의하신 분 블로그에 있는 코드이다. 일단 설치는 쉽게 완료했고 pakage.json 파일에 proxy : localhost8080 등록도 완료해놨다. 그리고 나서 build.gradle.kts 에 밑에 코드를 붙여넣으면 되는데 문제는 내 프로젝트 세팅은 gradle이 아닌 gradle.kts이다.. 당연히 밑에 코드를 붙여 넣었는데 되지 않았다def frontendDir = "$projectDir/src/main/reactfront"sourceSets { main { resources { srcDirs = ["$projectDir/src/main/resources"] .. 2024. 6. 7. 이전 1 2 다음