xmlns:dwr 引用的地址没法访问了

http://www.directwebremoting.org/schema/spring-dwr
http://directwebremoting.org/schema/spring-dwr-3.0.xsd

访问不了了,有知道咋回事么

解决了:



<beans xmlns="http://www.springframework.org/schema/beans"  
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
xmlns:tx="http://www.springframework.org/schema/tx"  
xmlns:dwr="http://www.directwebremoting.org/schema/spring-dwr" 
xmlns:aop="http://www.springframework.org/schema/aop"  
xmlns:context="http://www.springframework.org/schema/context"  
xsi:schemaLocation="http://www.springframework.org/schema/beans    
                http://www.springframework.org/schema/beans/spring-beans-2.5.xsd    
                http://www.springframework.org/schema/tx   
                http://www.springframework.org/schema/tx/spring-tx.xsd   
                http://www.directwebremoting.org/schema/spring-dwr        
                http://www.directwebremoting.org/schema/spring-dwr-3.0.xsd   
                http://www.springframework.org/schema/context   
                http://www.springframework.org/schema/context/spring-context-2.5.xsd
                http://www.springframework.org/schema/aop 
                http://www.springframework.org/schema/aop/spring-aop-2.5.xsd"  
default-autowire="byName" default-lazy-init="true"> 
```java



```