2012-02-08 10 views
1

spring-servlet.xmlを一から書き留めるときに、どのような名前空間が必要なのかを教えてください。 は、例えば、私は次の春-servlet.xmlを持っている:spring-servlet.xml(spring設定ファイル)のbeansコンポーネントに必要なxmlnsを調べる方法は?

<beans xmlns="**default namespace**"> 
<context:componet-scan base-package="org.example.controller"> 
</context:componet-scan> 
<bean id="viewResolver" class="org.springframework.web.servlet.view.UrlBasedViewResolver"> 
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"> 
</property> 
<property name="prefix">"/WEB-INF/jsp/" 
</property> 
<property name="suffix" value=".jsp"></property> 
</bean> 
</beans>          

「デフォルトの名前空間」を置き換えるべきかを決定するためにどのように?

答えて

0

あなたはあなたが使用しているものは何でもバージョンでschemaLocationにTHR 3.0バージョンを交換する必要があるかもしれ

<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"> 

    ... 

</beans> 

を必要としています。

+0

ありがとうございます。しかし、私が意味したのは、名前空間で必要とされるものを私たちの人生を通して覚えなければならないということでしたか?私はそれが常に手書きでなければならないということを意味するのですか?私はそのような馬鹿げた質問に新しいです:) – Supriya

+0

@スプリヤ:はい。しかし、あなたはまったく最初から書く必要はほとんどありません。他のコード、サンプル、ドキュメントからコピーするか、IDEから生成するだけです。 – skaffman

+0

ありがとう – Supriya

関連する問題