0

In Spring config xml we have tag and in that tag we have xmlns, xsi etc.. what all these details means ? When and how these details matters?

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">   
</beans>

thanks,

Rajan
  • 124
  • 2
  • 12

1 Answers1

0

You can find the nice answer of xsi:schema use here Use of xsi:schemaLocation

And this spring document will help you understand the spring configuration in details XML Schema-based configuration

Community
  • 1
  • 1
Sai prateek
  • 11,842
  • 9
  • 51
  • 66