[fix] URI is not registered (Settings | Languages & Frameworks | Schemas and DTDs) IntelliJ


URI is not registered (Settings | Languages & Frameworks | Schemas and DTDs)

If you have a Spring context file in your IntelliJ Java Project and you see that there are errors like the above, you can fix it by following the below steps,

  1. Click on the URLs that are not resolved and you see the red bulb,
  2. Now select fetch as an external resource,
  3. The error should go away,
  4. Repeat the same for other errors
Fetch as external resource
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context-3.0.xsd">
    
    <!-- Your beans here -->
</beans>

Facing issues? Have Questions? Post them here! I am happy to answer!

Author Info:

Rakesh (He/Him) has over 14+ years of experience in Web and Application development. He is the author of insightful How-To articles for Code2care.

Follow him on: X

You can also reach out to him via e-mail: rakesh@code2care.org



















Copyright © Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap