Zhou Yang
Zhou Yang
自定义 MyPage 类同时继承 Page 、实现 IPage 会有同名方法冲突
``` ERR The request (id: 41, method: 'textDocument/hover') has been cancelled: Error: The request (id: 41, method: 'textDocument/hover') has been cancelled at /home/zhouyang/.vscode-server/extensions/redhat.java-0.80.0/dist/extension.js:2:855900 at /home/zhouyang/.vscode-server/extensions/redhat.java-0.80.0/dist/extension.js:2:856194 at Immediate. (/home/zhouyang/.vscode-server/extensions/redhat.java-0.80.0/dist/extension.js:2:856559) at processImmediate...
> @arjenzhou please attach a sample project reproducing this issue sry sir, I can't provide this project. I can provide Java language server log which seems help. ``` !ENTRY org.eclipse.jdt.ls.core...
the project is a multi maven project. two sub-modules appear like this, others do not
@snjeza ok, files here. https://gist.github.com/arjenzhou/58da6baa213be889201b4d28260610f3
another message may help is that the project is using Java 8, settings.json here ``` { "files.autoSave": "afterDelay", "vim.handleKeys": { "": false, "": false, "": false, "": false, }, "java.home":...
https://github.com/mockito/mockito/issues/2952#issuecomment-1660765854
It seems like you should exports or opens some modules.
@linusjf just add ``` requires jdk.attach; ``` in `module-info.java` for bytebuddy agent to attach JVM
@linusjf I am using the latest version of spring-boot-test, which including byte-buddy. There some `module-info`s in byte-buddy and byte-buddy-agent jars are, which `jdk.attach` is required. So I use `requires jdk.attach;`...