我们在写 spring 的配置文件的时候,有的时候可能会用到 P 标签,然后我们发现自己并没有 p 标签啊,那么我们一起来看我是怎么解决的。
首先在我们的 xml 文件的首部添上这句话:
1. xmlns:context="http://www.springframework.org/schema/context
然后我们打出
xmlns:p=
然后就会相应的提示:
还有一点需要注意的就是:
需要注意的是必须在 xmlns:context="”这一行的下面打,否则也不会提示,如图所示位置即可提示,否则可能不提示
最终的代码:
1. xmlns="http://www.springframework.org/schema/beans"
2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:util="http://www.springframework.org/schema/util"
3. xmlns:context="http://www.springframework.org/schema/context"
4. xmlns:p="http://www.springframework.org/schema/p"
5. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于