gpt4 book ai didi

java - 配置spring xml配置命名空间,避免idea警告

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:20:45 24 4
gpt4 key购买 nike

我有以下 spring xml 配置 header :

<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:task="http://www.springframework.org/schema/task"
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/tx
http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task.xsd">

<tx:annotation-driven transaction-manager="transactionManager"/>
....

当我在 idea 中打开文件时,我看到红色错误:1.xmlns:p="http://www.springframework.org/schema/p -

URI is not registered

  1. beans 标签的想法错误。
    enter image description here

但它运行良好。

如何避免红色错误?

附言

我的 xml 配置中有以下片段:

       <bean id="sessionFactory"
class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource"/>
<property name="configLocation">
<value>classpath:hibernate.cfg.xml</value>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.dialect">${jdbc.dialect}</prop>
<prop key="hibernate.connection.charSet">UTF-8</prop>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.format_sql">true</prop>
<prop key="hbm2ddl.auto">validate</prop>
</props>
</property>
</bean>

最佳答案

一个特殊的命名空间(p namespace)没有定义在XSD文件中,只存在于Spring自身的核心中。p-namespace 不需要模式定义,是配置属性的另一种方式与您目前看到的方式不同。

由于 p: "namespaces"没有关联的 XSD 方案,Intelijj 无法验证此命名空间。

一种解决方案是在 IDEA 中关闭验证,但您找不到其他问题。

Intelijj IDEA 似乎没有针对这个问题提供任何解决方案。 https://youtrack.jetbrains.com/issue/IDEA-101723

关于java - 配置spring xml配置命名空间,避免idea警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30578950/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com