我正在尝试将 OpenID 支持添加到阔叶商业应用程序。我能够使用 Spring OpenID 开发出一个独立的 Web 应用程序。
在我的阔叶商务应用程序的站点/pom.xml 中,我添加了以下内容:-
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-openid</artifactId>
<version>3.1.3.RELEASE</version>
</dependency>
在此之后进行 Maven 构建会导致在应用程序中使用 @RequestMapping 的 'produces' 属性时出现编译错误。
"对于注释类型 RequestMapping 未定义属性生成"
@RequestMapping(value = "/add", produces = "text/html")
public String add(HttpServletRequest request, HttpServletResponse response, Model model,
项目的构建路径确实显示了 spring-web.3.0.7.RELEASE jar。
项目刷新/清理也没有帮助。
我正在使用阔叶 2.0。
谢谢你的帮助。