728x90
728x90
문제점
JSP 파일을 작성하는 도중
Cannot resolve taglib with uri http://java.sun.com/jsp/jstl/core라는 에러가 발생했다.
구글링을 통해 무엇이 문제인지 검색해 본 결과,
앞서 작성한 문제와 같이 build.gradle에 dependency를 추가하지 않은 탓이었다.
해결방안
build.grade의 dependencies에 아래 속성을 추가해 준다.
compile 'javax.servlet:jstl:1.2'
추가를 해주고 나면 에러 구문이 사라질 것이다.
728x90
728x90
'Spring' 카테고리의 다른 글
Postman에서 Token 값 저장하기 (1) | 2023.05.08 |
---|---|
[H2 실행 에러] Sorry, remote connections ('webAllowOthers') are disabled on this server. 에러 해결 방법 (1) | 2023.05.08 |
[Spring boot 에러] Cannot resolve symbol 'EnableWebSecurity' 에러 해결 방법 (0) | 2023.05.08 |
엔티티 매핑(Entity Mapping) (0) | 2023.05.07 |
영속성 컨텍스트(Persistence Context) (0) | 2023.05.07 |