SargerasWang's Blog

我常常思考为什么鸟儿拥有整片天空,却常常停留在一个地方。然后我问了自己同样的问题。

Appfuse搭建SSH的问题与解决

  • Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:dbunit-maven-plugin:1.0-beta-3:operation (execution: test-compile, phase: test-compile)
    • 解决方法:在<plugins>外面套上<pluginManagement>
1
2
3
4
5
6
<pluginManagement>
  <plugins>
      <plugin></plugin>
      ...
  </plugins>
</pluginManagement>
1
2
3
4
5
6
7
8
9
10
<dependency>
  <groupId>jstl</groupId>
  <artifactId>jstl</artifactId>
  <version>1.2</version>
  </dependency>
<dependency>
  <groupId>taglibs</groupId>
  <artifactId>standard</artifactId>
  <version>1.1.2</version>
</dependency>

遇到的其他问题基本都是因为网络问题,jar包下载失败,重新下载就好了。 附上我配置成功的项目。
下载myproject.zip