简体   繁体   English

maven中最新的javax.servlet.jsp jsp-api版本是否稳定?

[英]Is the latest javax.servlet.jsp jsp-api version in maven stable?

I'm now working on version up the maven dependencies in our application. 我现在正在开发应用程序中maven依赖项的版本。 I was searching around for the following maven dependency: 我正在寻找以下maven依赖:

<dependency>
    <groupId>javax.servlet.jsp</groupId>
    <artifactId>jsp-api</artifactId>
</dependency>

In the central maven repository I was finding the last version which is 2.2.1-b03. 在中央maven存储库中,我发现最后一个版本是2.2.1-b03。 This version was added at Jan 10, 2011, so more then 4 years ago. 此版本于2011年1月10日添加,因此超过4年前。

Is this beta version stable enough to use it in a complex application? 这个测试版是否足够稳定,可以在复杂的应用程序中使用它? Or should I use the version 2.2? 或者我应该使用2.2版本? Or is there any other groupId/artifactId which is more up to date for this package? 或者是否有任何其他groupId / artifactId对于此软件包更新?

I do not know if this could help you, but there is also a: javax.servlet.jsp-api under the same group and the first version starts where jsp-api ends. 我不知道这是否可以帮到你,但是在同一组下还有一个:javax.servlet.jsp-api,第一个版本从jsp-api结束的地方开始。 Maybe it is useful for you and is newer (april 2013), and there is beta of 2014 too. 也许它对你有用而且更新(2013年4月),并且也有2014年的beta。

<dependency>
    <groupId>javax.servlet.jsp</groupId>
    <artifactId>javax.servlet.jsp-api</artifactId>
    <version>2.3.1</version>
</dependency>

See http://mvnrepository.com/artifact/javax.servlet.jsp 请参见http://mvnrepository.com/artifact/javax.servlet.jsp

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM