2012-02-19 45 views
0

如何確定spring安全應用程序的spring-servlet.xml(spring配置文件)的bean組件需要哪些xmlns?彈簧安全應用程序的spring-servlet.xml的bean組件需要xmlns

這是正確的代碼?

<?xml version="1.0" encoding="UTF-8"?> 
<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 
     http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-2.0.4.xsd"> 

... 

</beans> 
+0

我們不能告訴你,沒有看到文件中的內容。 – skaffman 2012-02-19 14:10:19

+0

@skaffman我只是要求Spring安全應用程序的基本名稱空間。 – AbdulAziz 2012-02-19 14:40:16

+0

因此,閱讀Spring Security文檔,它就在那裏。 – skaffman 2012-02-19 15:10:45

回答

0

我得到了我在Spring框架的參考答案,那就是下面提及:

<beans xmlns="http://www.springframework.org/schema/beans" 
xmlns:security="http://www.springframework.org/schema/security" 
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-3.0.xsd 
http://www.springframework.org/schema/security 
http://www.springframework.org/schema/security/spring-security-3.0.3.xsd"> 
... 
</beans> 

一般來說,應該是這樣的。作爲參考Spring Security 3.0 Reference