在编写maven项目的时候,尤其是用mybatis框架的时候,会有许多xml配置文件。一个常见的问题是xml类型的文件无法导出,这就导致程序无法正常运行,这个问题公认的解决办法就是在build中配置resoureces,来防止我们资源导出失效的问题:
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
<include>**/*.properties</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*.xml</include>
<include>**/*.properties</include>
</includes>
</resource>
</resources>
**添加这些之之后按照常理来说是没问题了
但是今天犯迷了,**
![在这里插入图片描述](https://img-blog.csdnimg.cn/20210331205651535.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L2w0Mzk2MjIwMA==,size_16,color_FFFFFF,t_70)
要点击Lifecycle里的compile进行编译打包,而不是下面的插件😂
以后不能这么粗心