にエントリがありますservlet.xml
、
xmlns:dwr="http://www.directwebremoting.org/schema/spring-dwr
さて、私が思うに、dwrは、使用するプレフィックスです。
<dwr:configuration>
<dwr:convert type="bean" class="com.abc.bean.MyBean" />
</dwr:configuration>
ここで問題となるのは、サイトhttp://www.directwebremoting.orgがダウンしている場合、アプリケーションがBeanを作成できないことです。
beanfactoryがBeanを作成するたびに、このWebサイトにアクセスする予定ですか?
彼らのウェブサイトにアクセスせずにdwrを使用できるようにするための代替手段はありますか?
完全なヘッダー:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:dwr="http://www.directwebremoting.org/schema/spring-dwr"
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.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
http://www.directwebremoting.org/schema/spring-dwr
http://www.directwebremoting.org/schema/spring-dwr-2.0.xsd">