spring 使用 vaadin 启动需要几分钟才能启动
spring boot with vaadin takes several minutes to start
我知道有几篇关于它的帖子,我尝试了一些似乎稍微改善了情况的解决方案,但我的机器启动时间仍然非常长。
我在 Windows 10 上使用 spring-boot 2.4.4 和 vaadin 14.3.9 在 STS 4.10 中进行前端开发。我使用 Java 11 进行编译。
在我的属性中启用调试后,我可以看到“Mapping servlets”和“Starting Frontend compilation”之间存在大约 5 分钟的巨大差距
11:54:30.236 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port(s): 8080 (http)
11:54:31.171 [restartedMain] DEBUG o.s.b.w.s.c.ServletWebServerApplicationContext - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
11:54:31.172 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 6870 ms
11:54:52.463 [restartedMain] DEBUG o.s.b.w.s.ServletContextInitializerBeans - Mapping filters: filterRegistrationBean urls=[/*] order=-2147483647, springSecurityFilterChain urls=[/*] order=-100, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105, cacheCleanupFilter urls=[/*] order=2147483647, getBasicAuthFilter urls=[/*] order=2147483647, getFormAuthFilter urls=[/*] order=2147483647, loggingFilter urls=[/*] order=2147483647
11:54:52.464 [restartedMain] DEBUG o.s.b.w.s.ServletContextInitializerBeans - Mapping servlets: dispatcherServlet urls=[/], springServlet urls=[/vaadinServlet/*]
[38;5;35m
------------------ Starting Frontend compilation. ------------------
[0m[94mVaadin application has been deployed and started to the context path "/".
[0m11:59:07.893 [restartedMain] DEBUG o.s.b.a.m.w.s.WebMvcMetricsFilter - Filter 'webMvcMetricsFilter' configured for use
所以我不知道中间发生了什么。我想这可能是 vaadin 发挥了它的一些魔力,但我不能确定。
我很想在这里粘贴自动配置的输出,但不幸的是,这会使我超过 30k 个字符的限制(正文限制为 30000 个字符;您输入了 122954)。有没有更好的粘贴方法或者其中的某些部分可能对您有价值?
在我的应用程序属性 (yml) 中,我还为 vaadin 将我的视图包列入了白名单,在我的 windows 主机文件中,我取消了本地主机解析行的注释,但我不确定这是否有任何影响
vaadin:
whitelisted-packages:
- xx/path/to/view
此外,我刚刚升级到最新的 STS 版本(见上文),并创建了一个新的工作区,以确保这不是原因。
不确定从哪里开始寻找以及如何找出那 5 分钟内到底发生了什么。也许你能帮我找到解决办法。提前致谢
This is a known 14.4.0 之前的 Vaadin 版本中的问题。在更新的 14.4.0 版本中,该问题应该已得到修复。
虽然旧的 vaadin 版本有这个问题,但升级并没有为我解决。问题实际上是显而易见的,而且是配置问题。
在我的属性中使用 yaml 格式,我最初将白名单配置为:
vaadin:
whitelisted-packages:
- xx/path/to/view
这个格式是eclipse的代码补全给我的,但是不对,至少vaadin不接受这种格式。 vaadin 的正确格式如下:
vaadin:
whitelisted-packages: xx/path/to/view
多个包显然用逗号分隔。
现在我的项目在几秒钟内开始。
感谢大家的评论和帮我分析。
我知道有几篇关于它的帖子,我尝试了一些似乎稍微改善了情况的解决方案,但我的机器启动时间仍然非常长。
我在 Windows 10 上使用 spring-boot 2.4.4 和 vaadin 14.3.9 在 STS 4.10 中进行前端开发。我使用 Java 11 进行编译。 在我的属性中启用调试后,我可以看到“Mapping servlets”和“Starting Frontend compilation”之间存在大约 5 分钟的巨大差距
11:54:30.236 [restartedMain] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port(s): 8080 (http)
11:54:31.171 [restartedMain] DEBUG o.s.b.w.s.c.ServletWebServerApplicationContext - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
11:54:31.172 [restartedMain] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 6870 ms
11:54:52.463 [restartedMain] DEBUG o.s.b.w.s.ServletContextInitializerBeans - Mapping filters: filterRegistrationBean urls=[/*] order=-2147483647, springSecurityFilterChain urls=[/*] order=-100, characterEncodingFilter urls=[/*] order=-2147483648, formContentFilter urls=[/*] order=-9900, requestContextFilter urls=[/*] order=-105, cacheCleanupFilter urls=[/*] order=2147483647, getBasicAuthFilter urls=[/*] order=2147483647, getFormAuthFilter urls=[/*] order=2147483647, loggingFilter urls=[/*] order=2147483647
11:54:52.464 [restartedMain] DEBUG o.s.b.w.s.ServletContextInitializerBeans - Mapping servlets: dispatcherServlet urls=[/], springServlet urls=[/vaadinServlet/*]
[38;5;35m
------------------ Starting Frontend compilation. ------------------
[0m[94mVaadin application has been deployed and started to the context path "/".
[0m11:59:07.893 [restartedMain] DEBUG o.s.b.a.m.w.s.WebMvcMetricsFilter - Filter 'webMvcMetricsFilter' configured for use
所以我不知道中间发生了什么。我想这可能是 vaadin 发挥了它的一些魔力,但我不能确定。
我很想在这里粘贴自动配置的输出,但不幸的是,这会使我超过 30k 个字符的限制(正文限制为 30000 个字符;您输入了 122954)。有没有更好的粘贴方法或者其中的某些部分可能对您有价值?
在我的应用程序属性 (yml) 中,我还为 vaadin 将我的视图包列入了白名单,在我的 windows 主机文件中,我取消了本地主机解析行的注释,但我不确定这是否有任何影响
vaadin:
whitelisted-packages:
- xx/path/to/view
此外,我刚刚升级到最新的 STS 版本(见上文),并创建了一个新的工作区,以确保这不是原因。
不确定从哪里开始寻找以及如何找出那 5 分钟内到底发生了什么。也许你能帮我找到解决办法。提前致谢
This is a known 14.4.0 之前的 Vaadin 版本中的问题。在更新的 14.4.0 版本中,该问题应该已得到修复。
虽然旧的 vaadin 版本有这个问题,但升级并没有为我解决。问题实际上是显而易见的,而且是配置问题。
在我的属性中使用 yaml 格式,我最初将白名单配置为:
vaadin:
whitelisted-packages:
- xx/path/to/view
这个格式是eclipse的代码补全给我的,但是不对,至少vaadin不接受这种格式。 vaadin 的正确格式如下:
vaadin:
whitelisted-packages: xx/path/to/view
多个包显然用逗号分隔。 现在我的项目在几秒钟内开始。
感谢大家的评论和帮我分析。