org.springframework.context.support.AbstractApplicationContext refresh错误

idea显示如下错误

org.springframework.context.support.AbstractApplicationContext refresh错误_第1张图片
配置文件value可以这样写

<property name="mapperLocations" value="com/yi/mapper/Usermapper.xml"/>

另外需要在poxm.xml加上依赖

<build>
        <resources>
        <resource>
            <directory>src/main/java</directory>
            <includes>
                <include>**/*.xml
            
            false切记为false, 是否使用过滤器
        
        
    

另外一种方法是把配置文件放到resources下,就可以了

<property name="mapperLocations" value="Usermapper.xml"/>

你可能感兴趣的:(maven)