1 環境
Sentinel 1.8.3
OpenJDK 17.0.2
Manjaro
2 問題描述
根據官方Github Wiki使用如下命令啟動Sentinel
:
java -Dserver.port=8080 -Dcsp.sentinel.dashboard.server=localhost:8080 -Dproject.name=sentinel-dashboard -jar sentinel-dashboard.jar
報錯截圖如下:
摘要如下:
java.lang.IllegalStateException: Cannot load configuration class: com.alibaba.csp.sentinel.dashboard.DashboardApplication
Caused by: org.springframework.cglib.core.CodeGenerationException: java.lang.reflect.InaccessibleObjectException-->Unable to make protected final java.lang.Class java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain) throws java.lang.ClassFormatError accessible: module java.base does not "opens java.lang" to unnamed module @74fdb593
Caused by: java.lang.reflect.InaccessibleObjectException: Unable to make protected final java.lang.Class java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain) throws java.lang.ClassFormatError accessible: module java.base does not "opens java.lang" to unnamed module @74fdb593
可以看到異常來自於InaccessibleObjectException
,報錯資訊為module java.base does not "opens java.lang" to unnamed module @74fdb593
。
3 問題解決
其實筆者之前寫過一篇文章是關於解決JDK9
非法反射訪問警告的,這種問題不會在JDK8
出現,也是模組化的問題,因此解決方式類似,開放模組即可。
需要新增如下兩個啟動引數:
--add-opens java.base/java.lang=ALL-UNNAMED
--add-opens java.base/sun.net.util=ALL-UNNAMED
即可,完整命令如下:
java -Dserver.port=8080 -Dcsp.sentinel.dashboard.server=localhost:8080 -Dproject.name=sentinel-dashboard --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/sun.net.util=ALL-UNNAMED -jar sentinel-dashboard-1.8.3.jar
更換一下埠以及Sentinel
版本即可。