阐明 spring mvc 休息和其他阐明问题

发布于 2024-12-05 12:38:23 字数 211 浏览 2 评论 0原文

有谁知道 Enunciate 是否支持 Spring MVC @RequestMapping 剩余注释。如果是的话,有人有 enunciate.xml 和 pom.xml 文件来运行 mvn 插件。 mvn 插件没有正确合并我的 web.xml。

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

提前致谢。

Does any knows if Enunciate supports Spring MVC @RequestMapping rest annotations. If so does anyone have an enunciate.xml and pom.xml file for running the mvn plugin. The mvn plugin is not merging my web.xml properly..

So how do you rename /api servlet that Enunciate creates ... that is the name of the servlet that I am trying to document.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

踏月而来 2024-12-12 12:38:24

有谁知道Enunciate是否支持Spring MVC @RequestMapping剩余注释?

答案:不,只有 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>

阐明.xml:

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

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

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

Does any knows if Enunciate supports Spring MVC @RequestMapping rest annotations?

Answer: no, just JAX-RS.

Does anyone have an enunciate.xml and pom.xml file for running the mvn plugin? The mvn plugin is not merging my web.xml properly.

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"/>

So how do you rename /api servlet that Enunciate creates?

Enunciate doesn't create a servlet named "/api". Not sure what you're talking about.

ι不睡觉的鱼゛ 2024-12-12 12:38:24

实际上,Enunciate 确实有 Spring 集成,您可以在此处找到更多详细信息。

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

Actually, Enunciate does have a spring integration, you can find some more details here.

I must add that as for now, I'm struggling with Enunciate in order to make it work with Spring annotations. So far, without success.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文