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,
- Click on the URLs that are not resolved and you see the red bulb,
- Now select fetch as an external resource,
- The error should go away,
- Repeat the same for other errors

<?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>
Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!