简体   繁体   English

运行spring服务器时的JRebel-JVMTI错误

[英]JRebel-JVMTI error when running spring server

I get this error when running Spring source code. 运行Spring源代码时出现此错误。

JRebel-JVMTI [FATAL] Couldn't write to C:\\Users\\ ȯ.jrebel\\bootcache. JRebel-JVMTI [FATAL]无法写入C:\\ Users \\ ȯ.jrebel\\ bootcache。 Please make sure that this location exists and is writable, or specify another location by changing the 'rebel.base' system property. 请确保该位置存在并且可写,或者通过更改“ rebel.base”系统属性来指定其他位置。

JRebel tries to create a directory for license, properties, logs and boot cache and by default it places it under %USERPROFILE%/.jrebel however in your case the path contains some unicode characters. JRebel尝试为许可证,属性,日志和启动缓存创建目录,并且默认情况下将其放置在%USERPROFILE%/.jrebel但是在您的情况下,该路径包含一些Unicode字符。

This is not properly supported so you will need to define a non-unicode path for the base folder via the VM argument -Drebel.base=[path] or the environment variable REBEL_BASE=[path] . 不正确地支持此功能,因此您需要通过VM参数-Drebel.base=[path]或环境变量REBEL_BASE=[path]为基本文件夹定义一个非Unicode路径。

For example: 例如:

java -agentpath:C:/path/to/jrebel/lib/jrebel64.dll -Drebel.base=C:/some/path foo.Main

This folder will be created if it does not exist. 如果该文件夹不存在,则将创建它。

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

相关问题 使用JRebel 6.0.0进行部署时,在Spring 4.1.2更新后找不到资源 - Resource Not Found after Spring 4.1.2 Update when deploy with JRebel 6.0.0 使用 spring 4.3 和 JRebel 在 tomcat8 中部署 Java 应用程序时出现异常 - Exception when deploying Java app in tomcat8 with spring 4.3 and JRebel 在数据流服务器中运行时出现spring cloud task taskLifecycleListener错误 - spring cloud task taskLifecycleListener error when running in dataflow server Spring MVC HTTP 在服务器上运行时出现状态 404 错误 - Spring MVC HTTP Status 404 error when running on Server 为JSF 2.2项目打开Jrebel时出现怪异异常和内部错误 - Weird Exceptions & internal error when Jrebel is turned on for JSF 2.2 project JRebel远程服务器即服务 - JRebel remote server as a Service 以调试模式启动时,jrebel 在 hybris 中导致错误 - jrebel cause error in hybris when starting with debug mode JVMTI GetLocalVariableTable()始终提供JVMTI_ERROR_ABSENT_INFORMATION - JVMTI GetLocalVariableTable() always gives JVMTI_ERROR_ABSENT_INFORMATION 如何与正在运行的JVM上附加的jvmti代理进行通信 - How to communicate with jvmti agent attached on a running JVM 尝试使用jvmti访问Exception和Thread对象的值时出现无效的插槽错误 - Invalid Slot Error When trying to access value of Exception and Thread Objects Using jvmti
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM