IT개발/Spring & Spring Security(4)
-
[Spring] @RequestParam Map param - 파라미터를 안줬는데 왜 잘되지? @RequestParam(required=false) 줘야되는거 아니였어? 응 Map은 아니야!
자~~~~ 보자! 보자! 어디보자! 스프링 너 지금 보자! .... ㅡ,.ㅡ 아래의 Spring의 스펙을 보자! org.springframework.web.bind.annotation Annotation Type RequestParam @Target(value=PARAMETER) @Retention(value=RUNTIME) @Documented public @interface RequestParam Annotation which indicates that a method parameter should be bound to a web request parameter. Supported for annotated handler methods in Spring MVC and Spring WebFlux as f..
2022.07.18 -
[spring boot] Reason: Failed to determine suitable jdbc url 또는 jdbcUrl is required with driverClassName 발생시
*************************** APPLICATION FAILED TO START *************************** Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to determine suitable jdbc url Action: Consider the following: If you want an embedded database (H2, HSQL or Derby), please put it on the classpath. If you have database s..
2022.01.11 -
Cannot find the class file for org.springframework.data.domain.Sort. Fix the build path then try building this project
오류현상Cannot find the class file for org.springframework.data.domain.Sort. Fix the build path then try building this project뿜으며 동작안함... 아놔 뭐니? 원인maven update시 jar를 다운받다가 비정상적으로 다운받은jar로 인해 제대로 된 빌드가 안되는 것이다.의심스러우면 maven install을 해봐~! 문제가 있는 jar( invalid LOC header (bad signature)가 발생한... )를 콘솔에 알려줄 것이다. 해결방법위 maven install시 참조불가한 내역을 보고 하나하나 지우면 끝 예를 들어 아래와 같은 오류가 뜰것이다.[WARNING] error reading C:\d..
2018.03.12 -
[Spring Security] COMTNSECURED_RESOURCES 및 COMTNSECURED_RESOURCES_ROLE 테이블 존재하지 않다고 나올때
전자정부 3.6버전내용 중 Spring Security 관련 설정 정보에서 존재하지 않는 테이블이 있어 다음과 같이 변경하였더니 오류가 없었다. context-security.xml before sqlRegexMatchedRequestMapping="SELECT a.resource_pattern uri, b.authority authorityFROM COMTNSECURED_RESOURCES a, COMTNSECURED_RESOURCES_ROLE bWHERE a.resource_id = b.resource_idAND a.resource_type = 'url'" after sqlRegexMatchedRequestMapping="SELECT a.ROLE_PTTRN uri, b.AUTHOR_CODE author..
2017.07.18