헤르메스 LIFE

STS 4.x 에서 downloading external resources is disabled. 오류 메시지 본문

Eclipse와 IntelliJ 관련

STS 4.x 에서 downloading external resources is disabled. 오류 메시지

헤르메스의날개 2024. 7. 24. 09:01
728x90

STS 4.x 에서 MyBatis 사용 시 아래의 구문에서 "downloading external resources is disabled." 라는 오류 메시지가 보여집니다.

이게 실행이 안되는건 아닌데, 메시지가 거슬리긴 합니다. ㅡㅡ;;

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="cspi.ezpus.global.services.dao.CommonMapper">
....
</mapper>

첫번째 해결 방법은 아래와 같습니다.

[Window >> Preference >> XML (Wild Web Developer) ] Download external resources like referenced DTD, XSD 를 체크해주면 해결됩니다.

두번째 해결 방법은 Validation 체크를 하지 않는 겁니다.

[ Window >> Preference >> XML (Wild Web Developer)  >> Validation & Resolution ] Enable validation 의 체크를 해제 해주면 됩니다.

728x90