Record idea MAVEN Project package Deployment Web project Mapper scan failed

Source: Internet
Author: User

At first I thought there was a problem here, and later I couldn't pack mapper.xml in.

This is an unusual message from the newspaper.

MyBatis start always reported binding error (unable to find the corresponding SQL configuration mapper), after some Google did not solve the problem (everyone said that XML did not write to the kind of), there is no suspicion of missing the XML file, finally forced to look at the next After Maven packaged the war file, only to find the problem.
Not much nonsense, the solution is to add the following code to the build node in the Pom.xml file:

<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>false</filtering>
</resource>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</build>
As long as the report resource marked as a resource file, there will be no problem without joining the related packaging under the resource file.

Record idea MAVEN Project package Deployment Web project Mapper scan failed

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.