在开发中,我们常常会发现没有什么问题,然后部署的时候,常常因为数据库连接等方式,日志配置文件的事情,在这些事情上不厌其烦。需要修改配置文件,而且是在服务器上修改文件。或者部署前修改配置文件,然后再改回来。
修改之后,其实maven有profile配置,就能大大简化这些工作。切换一下“环境”,无论是开发还是部署,或者测试都能比较愉快了。其实maven上还有很多插件,比如tomcat的自动部署等等。感觉那个叫“持续集成”的东西,得尽快付诸行动,减少这种部署上的麻烦。
dev true dev test test production production
如果maven复制的资源中,包含同名的资源,往往需要后面的复制覆盖前面的复制,但是maven的资源复制默认是不覆盖的。
比如:
<resources>
<!-- 复制资源 --> <resource> <directory>src/main/resources</directory> <includes> <include>**/*</include> </includes> </resource> <!-- 复制特定 profile 的资源 --> <resource> <directory>src/main/resources/${resource_dir}</directory> <!--<filtering>true</filtering>--> <includes> <include>**/*</include> </includes> </resource> </resources>
这种情况下,可以通过配置 maven.resources.overwrite 的属性值来变更这个行为:
<properties>
<maven.resources.overwrite>true</maven.resources.overwrite> </properties>这样mvn compile之后就会覆盖原来的文件了。