关于schema的问题
每次到了spring的schema的配置,老师就说是从官网复制来的,让我们复制老师的源代码,但是我们总不能一直复制老师的源码把,具体在官网哪里,什么功能需要什么schema 能不能详尽说下
30
收起
正在回答 回答被采纳积分+1
1回答
好帮手慕阿园
2021-04-07 11:34:41
同学你好,这个是配置文件的约束头文件,可以从官网如下位置找到
选择对应的版本:
官网地址如下
https://spring.io/projects/spring-framework
但这样比较麻烦,所以建议同学直接保存老师项目提供的做一下备份就好,用到的时候将其复制到文件中一般比较常用的也就这些
?xml version="1.0" encoding="UTF-8" ?>
<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"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd">
如上头文件中,是标签的约束文件,例如bean是用来约束及提示bean标签的约束文件,要使用<bean>标签,必须引入如下内容。
同理,spring-context.xsd 等是用来约束以及提示<context></context> 等
相应的要是用aop标签,必须引入aop的约束文件
这些头约束文件同学可以都写上,也可以用哪些就写上哪些
祝学习愉快~
相似问题
登录后可查看更多问答,登录/注册
java工程师2020版
- 参与学习 人
- 提交作业 9393 份
- 解答问题 16556 个
综合就业常年第一,编程排行常年霸榜,无需脱产即可学习,北上广深月薪过万 无论你是未就业的学生还是想转行的在职人员,不需要基础,只要你有梦想,想高薪
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星