用spring mvc rest和其他Enunciate Questions结束

时间:2011-09-19 20:13:49

标签: spring-mvc wadl enunciate

有没有人知道Enunciate是否支持Spring MVC @RequestMapping休息注释。如果是这样,任何人都有一个enunciate.xml和pom.xml文件来运行mvn插件。 mvn插件没有正确合并我的web.xml ..

那么如何重命名Enunciate创建的/ api servlet ...这就是我想要记录的servlet的名称。

提前致谢。

2 个答案:

答案 0 :(得分:4)

  

有没有人知道Enunciate是否支持Spring MVC @RequestMapping rest annotations?

答案:不,只是JAX-RS。

  

有没有人有一个用于运行mvn插件的enunciate.xml和pom.xml文件? mvn插件没有正确合并我的web.xml。

的pom.xml:

  <project><build><plugins>
    <plugin>
      <groupId>org.codehaus.enunciate</groupId>
      <artifactId>maven-enunciate-plugin</artifactId>
      <version>${project.version}</version>
      <executions>
        <execution>
          <goals>
            <goal>assemble</goal>
          </goals>
        </execution>
      </executions>
    </plugin>

enunciate.xml:

<enunciate>
  <webapp mergeWebXML="./path/to/my/web.xml"/>
  

那么如何重命名Enunciate创建的/ api servlet?

Enunciate不会创建名为“/ api”的servlet。不确定你在谈论什么。

答案 1 :(得分:2)

实际上,Enunciate确实有弹簧集成,你可以找到更多细节here

我必须补充一点,就像现在一样,我正在努力使用Enunciate以使其与Spring注释一起使用。到目前为止,没有成功。