首頁 > Java > 主體

如何從嵌入式 Jetty 10 遷移到 jetty 12 ee8?

WBOY
發布: 2024-02-05 11:56:49
轉載
718 人瀏覽過
問題內容

我嘗試從 jetty 10.x 移植到 jetty 12.x ee8。在我根據此列表更改依賴項之後 https://download.eclipse.org/tools/orbit/simrel/maven-jetty/release/12.0.6/。我在使用嵌入式 jetty 時遇到了一些編譯器錯誤。

似乎沒有ee8 server類,我使用org.eclipse.jetty.server.server。類別擴充自 org.eclipse.jetty.server.handler.wrapper

但是 jetty-ee8-nested 的處理程序從 org.eclipse.jetty.ee8.nested.handlerwrapper 擴展,這是不相容的。例如org.eclipse.jetty.ee8.nested.inetaccesshandler。一個期望 org.eclipse.jetty.server.handler 另一個 org.eclipse.jetty.ee8.nested.handler

#還有我監督的伺服器的另一個實施者嗎?我在哪裡可以找到它?類別名稱如何?

或我必須修改我的程式碼嗎?例如,我如何更改以下行?

InetAccessHandler ipaccess = new InetAccessHandler();
ipaccess.setHandler( getHandler() );
setHandler( ipaccess );
登入後複製


正確答案


首先,有一個從 jetty 11 到 jetty 12 的移植指南: https:// eclipse.dev/jetty/documentation/jetty-12/programming-guide/index.html#pg-migration-11-to-12

#它顯示了您所詢問的許多事情。

忽略org.eclipse.jetty.ee8.nested.*套件中的類,這些是ee8層的內部類別。

使用org.eclipse.jetty.server.handler.inetaccesshandler

您可以將其包裝在任何處理程序周圍,例如:org.eclipse.jetty.server.handler.sequenceorg.eclipse.jetty.ee8.webappwebappcontext等...

InetAccessHandler inetAccessHandler = new InetAccessHandler();
// allow only http clients from localhost IPv4 or IPv6
inetAccessHandler.include("127.0.0.1", "::1");
server.setHandler(inetAccessHandler);

Handler.Sequence handlers = new Handler.Sequence();
inetAccessHandler.setHandler(handlers);

WebAppContext webapp = new WebAppContext();
webapp.setContextPath("/");
webapp.setWar(warPath.toUri().toASCIIString());

handlers.addHandler(webapp);
登入後複製

此片段來自 https:// /github.com/jetty/jetty-examples/tree/12.0.x/embedded/ee8-webapp-context

#

以上是如何從嵌入式 Jetty 10 遷移到 jetty 12 ee8?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:stackoverflow.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板