Mybatis .xml files in spring-boot can only be placed under resources/mapper/?

the .xml file of mybatis in spring-boot can only be placed under resources/mappper, like this:


put together with the interface, not uniformly placed under the resources/mapper, separate, easy to manage.

thanks!

Feb.26,2021

< resource >

        <directory>src/main/java</directory>
        <includes>
            <include>**/*.properties</include>
            <include>**/*.xml</include>
        </includes>
    </resource>
  pom<build>
resource
Menu