gpt4 book ai didi

java - Linux Mint Cinnamon 锁定调试 w/Eclipse

转载 作者:行者123 更新时间:2023-11-30 08:35:15 24 4
gpt4 key购买 nike

我有一个可重现的问题,即在使用 Eclipse 调试断点时 Mint Cinnamon 桌面锁定。当我说它正在锁定时,我的意思是鼠标点击完全无法操作(即使在 Mint 面板上),但鼠标光标仍在移动。键盘没有响应,除了一些操作系统级别的快捷键,如 Alt-Tab。 Alt-Tab 看起来 有效,但选择另一个窗口实际上并没有聚焦或激活该窗口(只有 Alt-Tab 选择器弹出窗口有效)。我只能使用 Ctrl-Alt-ESC 重新启动 Cinnamon 来恢复。之后一切顺利。

据我所知,除断点位于匿名内部类或 lambda 内部时,调试和断点在其他任何地方都可以正常工作。

公共(public) git repo 有一个相当简单的示例项目导致了这个: https://bitbucket.org/jfxexamples/eclipseminttest

Linux Mint 17.3 和在另一台 PC 上全新安装的 Mint 18 - 两者的行为相同Eclipse NEON 4.6.0Java 8 (1.8.0_92) - Oracle JDK(使用 JavaFX)

下面的代码(你必须获取项目文件才能运行它):

package application;

import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.scene.layout.BorderPane;
import javafx.stage.Stage;

public class Main extends Application {
@Override
public void start(Stage primaryStage) {
try {
BorderPane root = (BorderPane)FXMLLoader.load(getClass().getResource("Sample.fxml"));
Scene scene = new Scene(root,400,400);
scene.getStylesheets().add(getClass().getResource("application.css").toExternalForm());
primaryStage.setScene(scene);
primaryStage.show();
} catch(Exception e) {
e.printStackTrace();
}
}

public static void main(String[] args) {
launch(args);
}
}

package application;

import javafx.event.Event;
import javafx.event.EventHandler;
import javafx.fxml.FXML;
import javafx.scene.control.Tab;
import javafx.scene.control.TabPane;

public class SampleController {

@FXML
private TabPane tabPane;

public void createTab() {

Tab tab = new Tab("New tab");//Breakpoint here does NOT freeze desktop

// tab.setOnCloseRequest(e -> {
// System.out.println("bleh");//Breakpoint here, freezes desktop
// });
tab.setOnCloseRequest(new EventHandler<Event>(){
@Override public void handle(Event e){
System.out.println("bleh");//Breakpoint here, also freezes desktop
}
});

tabPane.getTabs().add(tab);//Breakpoint here does NOT freeze desktop
int index = tabPane.getTabs().size() - 1;
tabPane.getSelectionModel().select(index);
}
}

最佳答案

用Win10/IntellijCE/JDK1.8.0_92没有问题。尝试在 Mint 上使用 IntellijCE。如果有效,问题很可能出在 Cinnamon 上。

Cinnamon 在 Github 上,所以使用他们的 Issue Tracker在那里报告错误。浏览问题,甚至有一些可能与您的问题有关:查看https://github.com/linuxmint/Cinnamon/issues/1084 .

关于java - Linux Mint Cinnamon 锁定调试 w/Eclipse,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38343503/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com