Gangmax Blog

My Tip 16: Spring Schema

解决Spring启动时,必须通过web到www.springframework.org取得xml schema文件的问题,使用以下的方法可以将这些schema文件存放在本地硬盘上([这里][1_u7ro])。

1
2
3
4
5
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans file:C:\spring-beans-2.0.xsd http://www.springframework.org/schema/tx file:C:\spring-tx-2.0.xsd http://www.springframework.org/schema/aop file:C:\spring-aop-2.0.xsd">

Comments