Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-dev] Jetty migration from 8.1.4 to 9.4.5 -- Need Jetty-jsp version

that makes sense , we will go through each major version that would makes more transparent on the changes.

Thanks

On Tue, May 30, 2017 at 4:31 PM, Chris Walker <chris@xxxxxxxxxxx> wrote:
It's worth noting we do not have dedicated migration guides written for each major version at the current time. We have one for migrating from 9.3.x to 9.4.0, and it is something we plan on doing going forward. As Joakim stated, there are countless changes that have been made between 8.1.4 and 9.4.5 and a single guide would likely be volumes thick.

Best,
Chris

On Tue, May 30, 2017 at 4:23 PM, Joakim Erdfelt <joakim@xxxxxxxxxxx> wrote:
You would need migration docs for 8.1 -> 9.0 -> 9.1 -> 9.2 -> 9.3 -> 9.4

Reminder: Jetty versioning is <servlet_support>.<major>.<minor>

You are doing the equivalent of upgrading from Windows 95 -> 98 -> ME -> XP -> Windows 8 -> Windows 10

You'll have to dig into the documentation at each major version, look at the section you are interested in, and see if there is "changes in" type sections that are relevant to you.

Example:

Documentation links to previous versions:

Note: for the older releases, the documentation you are looking for, might already been archived.

Joakim Erdfelt / joakim@xxxxxxxxxxx

On Tue, May 30, 2017 at 1:12 PM, upendar devu <devulapalli8@xxxxxxxxx> wrote:
Thank you,  I could not find migration docs from 8 to 9.  could you able to share me if you have any migration docs from 8 to 9 version  that would help to save time for migration work analysis.

On Tue, May 30, 2017 at 4:02 PM, Joakim Erdfelt <joakim@xxxxxxxxxxx> wrote:
Yes, Jetty 8.x is EOL (End of Life).


Joakim Erdfelt / joakim@xxxxxxxxxxx

On Tue, May 30, 2017 at 1:00 PM, upendar devu <devulapalli8@xxxxxxxxx> wrote:
Its stated in the Jetty document that 8.1.4 is deprecated, does it mean that we should upgrade to latest version ? 

On Tue, May 30, 2017 at 3:23 PM, Joakim Erdfelt <joakim@xxxxxxxxxxx> wrote:
That's a lot of major version upgrades you got there.

8.1 -> 9.0 -> 9.1 -> 9.2 -> 9.3 -> 9.4

We transitioned from glassfish jasper, to a period where we supported glassfish jasper and apache jasper, to only supporting apache-jasper.

You'll probably need the apache-jsp artifact.


Good luck,

Joakim Erdfelt / joakim@xxxxxxxxxxx

On Tue, May 30, 2017 at 11:40 AM, upendar devu <devulapalli8@xxxxxxxxx> wrote:
we are upgrading Jetty version from 8.1.4 to latest stable version 9.4.5.


We are using below libraries and also listed its maven dependencies. We could not able to find jetty-jsp  with 9.4.5 version. 

Could you please let me know which version of jetty-jsp we need to use ?

Thanks



-  jetty-xml-8.1.4.v20120524.jar
- jetty-webapp-8.1.4.v20120524.jar
- jetty-servlet-8.1.4.v20120524.jar
- jetty-security-8.1.4.v20120524.jar
- jetty-continuation-8.1.4.v20120524.jar
- jetty-util-8.1.4.v20120524.jar
- jetty-server-8.1.4.v20120524.jar
- jetty-io-8.1.4.v20120524.jar
- jetty-http-8.1.4.v20120524.jar
- jetty-client-8.1.4.v20120524.jar
- jetty-jsp-8.1.4.v20120524.jar


<jetty.version>8.1.4.v20120524</jetty.version>


<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<version>${jetty.version}</version>
<scope>${default.dependency.scope}</scope>
</dependency>

<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jsp</artifactId>
<version>${jetty.version}</version>
<scope>${default.dependency.scope}</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-client</artifactId>
<version>${jetty.version}</version>
<scope>${default.dependency.scope}</scope>
</dependency>

<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-jspc-maven-plugin</artifactId>
<version>${jetty.version}</version>
<executions>
<execution>
<id>jspc</id>
<goals>
<goal>jspc</goal>
</goals>
<configuration>
<packageRoot>org.apache.jsp</packageRoot>
</configuration>
</execution>
</executions>
 </plugin>


_______________________________________________
jetty-dev mailing list
jetty-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/jetty-dev


_______________________________________________
jetty-dev mailing list
jetty-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/jetty-dev


_______________________________________________
jetty-dev mailing list
jetty-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/jetty-dev


_______________________________________________
jetty-dev mailing list
jetty-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/jetty-dev


_______________________________________________
jetty-dev mailing list
jetty-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/jetty-dev


_______________________________________________
jetty-dev mailing list
jetty-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/jetty-dev


_______________________________________________
jetty-dev mailing list
jetty-dev@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/jetty-dev


Back to the top