0 Spring配置の基礎――xmlファイルコード提示


先にこのxmlファイルを見てください.

    xml  

<?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">  
            
           
</beans>
このxmlには何のbeanも設定されていません.先に説明します
xmlnsはxml namespaceで、beansつまりIOCを使うとこの名前空間を導入する必要があります.http://www.springframework.org/schema/beans.
xsiは最後にネット上の位置を指します.
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
xmlのコードヒントはこのxsdから読みました.これをローカルに読み込みます.コードの提示機能は少し速くなります.
Preference-xml-xml catalogはuser specified entitiesにaddボタンをつけます.
0Spring配置基础——xml文件代码提示
1、location file system springフォルダの中のspring-beans-2.25.xsdファイルを選択します.
2、key type Schema locationを選択する
3、key記入http://www.springframework.org/schema/beans/spring-beans-2.5.xsdxmlと一致するようにしてください.
4、ポイントok
0Spring配置基础——xml文件代码提示
このようにxmlコードを提示すると、ローカルディスク上のxsdファイルにジャンプします.ネットよりずっと速くなりました.