具有 Spring 版本依赖关系的 Apache Wicket

Apache Wicket with Spring version dependencies

Apache Wicket 和 Spring 之间是否存在任何已知的版本依赖关系?无法从 Wicket 或 Wicket-Spring 桥文档中找到任何内容。

例如,Wicket 7 可以是 运行 和 Spring 5,Wicket 9 可以是 Spring 4 等等。

Wicket 7.x 使用 Spring 4.1.x - https://github.com/apache/wicket/blob/wicket-7.x/pom.xml#L135

Wicket 8.x 使用 Spring 4.3.x - https://github.com/apache/wicket/blob/wicket-8.x/pom.xml#L137

Wicket 9.x 使用 Spring 5.3.x - https://github.com/apache/wicket/blob/wicket-9.x/pom.xml#L174

Wicket 10.x 将使用 Spring 6.x - https://github.com/apache/wicket/blob/80726e2dae60e5893be0621761883f2dec20cac0/pom.xml#L185

您可以在 pom.xml 中管理 Spring 版本,它是否有效取决于您在应用程序中使用的 Spring API。 Wicket 对 Spring API 的使用相当少,您很可能不会遇到问题。