zoukankan      html  css  js  c++  java
  • Could not resolve resource location pattern [classpath:com/****/mappers/*.xml]: class path resource [com/****/mappers/] cannot be resolved to URL because it does not exist的问题

    这里建议先去看看路径的问题,看看application.xml的里面的导入的相应的配置文件的路径有没有问题,如下:

     再者看看相应的注解有没有加上,service和controller等的注解

    如果再不行,在pon.xml文件加上下面的:

    <build>
    <resources>
    <!--编译之后包含xml-->
    <resource>
    <directory>src/main/java</directory>
    <includes>
    <include>**/*.xml</include>
    </includes>
    <filtering>true</filtering>
    </resource>
    </resources>
    </build>

    然后在reimport下:

  • 相关阅读:
    多重继承
    单继承
    访问限制方法
    猜字游戏
    getSet方法
    访问限制
    __str__函数
    析构函数
    构造函数二
    选择排序
  • 原文地址:https://www.cnblogs.com/share-record/p/11503869.html
Copyright © 2011-2022 走看看