XML网络中的配置文件更改为本地读取

前端之家收集整理的这篇文章主要介绍了XML网络中的配置文件更改为本地读取前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

文件<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:context="http://www.springframework.org/schema/context"
xmlns:jpa="http://www.springframework.org/schema/data/jpa" xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:p="http://www.springframework.org/schema/p">

如上所示在XML中的配置文件规范,有很多都是从网络中加载的,一旦没有网络项目将无法正常启动,因此可以将网络中的文件事先下载到本地并加添到项目中,然后引入到配置文件中即可。例如需要引用spring的定时器的XML文件可以在Context中这样配置:classpath:/spring-task-3.1.XML即可。上面的网址形的引入文件配置都可以替换成本地的文件引入,这个在内网开发经常用到。
原文链接:https://www.f2er.com/xml/294496.html

猜你在找的XML相关文章