Vaadin with using Jetty Server -> ERROR: Jetty server existing
Vaadin with using Jetty Server -> ERROR: Jetty server existing
我最近开始学习Vaadin。一开始我使用的是 Vaadin 8,并在 eclipse 中启动了一个小的 Vaadin 项目用于练习。我总是在 localhost:8080 上通过 Jetty 启动和打开这个项目。最初几天效果很好,但从昨天开始
我的 localhost:8080 立即需要用户名和密码,应用程序不再在那里打开。
唯一不同的是,前天我安装了一个Oracle数据库(OracleXE 11g) - 会不会和它有关?
这是一个片段,如果我收到错误消息:
Sep. 12, 2021 10:51:20 VORM. org.atmosphere.cpr.AtmosphereFramework addInterceptorToAllWrappers
INFORMATION: Installed AtmosphereInterceptor Track Message Size Interceptor using | with priority BEFORE_DEFAULT
[INFO] Started o.e.j.m.p.JettyWebAppContext@60b616c8{/,file:///C:/Repositories/ProgrammingCourses/Vaadin-and-Maven_Crash-Course/VaadinFirstSteps/src/main/webapp/,AVAILABLE}{file:///C:/Repositories/ProgrammingCourses/Vaadin-and-Maven_Crash-Course/VaadinFirstSteps/src/main/webapp/}
[INFO] Jetty server exiting.
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 42.520 s
[INFO] Finished at: 2021-09-12T10:51:20+02:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.eclipse.jetty:jetty-maven-plugin:9.3.9.v20160517:run (default-cli) on project VaadinFirstSteps: Failure: Address already in use: bind -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
有人知道如何启动 Vaadin 并再次 运行 吗?我很感激任何帮助,
兹雷布纳 :)
“失败:地址已在使用:绑定”意味着您正在尝试在本地主机端口 8080 上启动 Web 应用程序服务器,而已经存在 Web 应用程序服务器 运行 并拥有该端口。因此无法启动新的。
你需要检查你的进程已经 运行 并杀死旧的。
我最近开始学习Vaadin。一开始我使用的是 Vaadin 8,并在 eclipse 中启动了一个小的 Vaadin 项目用于练习。我总是在 localhost:8080 上通过 Jetty 启动和打开这个项目。最初几天效果很好,但从昨天开始 我的 localhost:8080 立即需要用户名和密码,应用程序不再在那里打开。 唯一不同的是,前天我安装了一个Oracle数据库(OracleXE 11g) - 会不会和它有关?
这是一个片段,如果我收到错误消息:
Sep. 12, 2021 10:51:20 VORM. org.atmosphere.cpr.AtmosphereFramework addInterceptorToAllWrappers
INFORMATION: Installed AtmosphereInterceptor Track Message Size Interceptor using | with priority BEFORE_DEFAULT
[INFO] Started o.e.j.m.p.JettyWebAppContext@60b616c8{/,file:///C:/Repositories/ProgrammingCourses/Vaadin-and-Maven_Crash-Course/VaadinFirstSteps/src/main/webapp/,AVAILABLE}{file:///C:/Repositories/ProgrammingCourses/Vaadin-and-Maven_Crash-Course/VaadinFirstSteps/src/main/webapp/}
[INFO] Jetty server exiting.
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 42.520 s
[INFO] Finished at: 2021-09-12T10:51:20+02:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.eclipse.jetty:jetty-maven-plugin:9.3.9.v20160517:run (default-cli) on project VaadinFirstSteps: Failure: Address already in use: bind -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
有人知道如何启动 Vaadin 并再次 运行 吗?我很感激任何帮助, 兹雷布纳 :)
“失败:地址已在使用:绑定”意味着您正在尝试在本地主机端口 8080 上启动 Web 应用程序服务器,而已经存在 Web 应用程序服务器 运行 并拥有该端口。因此无法启动新的。
你需要检查你的进程已经 运行 并杀死旧的。