MAVEN Publishing Project Missing MyBatis Mapper package mapping problem

Source: Internet
Author: User

Due to some version of Eclipse, the SQL files in MyBatis's mapper package are not being punched into the package and need to be added to the POM:

<build>
<!--configuration does not filter non-Java files when packaging starts--
<!--explains that Maven will filter out non-Java files when it comes to modular development of the jar package.
Xml,properties configuration files, etc., but these files are required,
You can use this configuration to not filter these required profiles when you package.
-
<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>
<!--configuration does not filter non-Java file ends when packaging
</build>

MAVEN Publishing Project Missing MyBatis Mapper package mapping problem

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.