File tree 1 file changed +24
-3
lines changed
1 file changed +24
-3
lines changed Original file line number Diff line number Diff line change 63
63
</dependency >
64
64
</dependencies >
65
65
66
- <!-- 解决: org.apache.ibatis.binding.BindingException:Invalid bound statement (not found) -->
67
- <build >
66
+ <build >
67
+ <plugins >
68
+ <!-- Quick start: mvn package -->
69
+ <plugin >
70
+ <groupId >org.springframework.boot</groupId >
71
+ <artifactId >spring-boot-maven-plugin</artifactId >
72
+ <executions >
73
+ <execution >
74
+ <goals >
75
+ <goal >repackage</goal >
76
+ </goals >
77
+ </execution >
78
+ </executions >
79
+ </plugin >
80
+ </plugins >
68
81
<resources >
82
+ <!-- IDEA-解决: org.apache.ibatis.binding.BindingException:Invalid bound statement (not found) -->
69
83
<resource >
70
84
<directory >src/main/java</directory >
71
85
<includes >
72
86
<include >**/*.xml</include >
73
87
</includes >
74
88
</resource >
89
+ <!-- IDEA-解决: 项目打包后其jar中未包含'static/'及'application.properties'配置文件问题 -->
90
+ <resource >
91
+ <directory >src/main/resources</directory >
92
+ <includes >
93
+ <include >**/**</include >
94
+ </includes >
95
+ </resource >
75
96
</resources >
76
97
</build >
77
98
78
- </project >
99
+ </project >
You can’t perform that action at this time.
0 commit comments