我正在使用Eclipse 3.6.2.它已经获得了一些出现在每个视角中的空白面板(见截图).我想删除它们,但不知道如何.达到最小化或最大化会使它们占用更多空间.重新启动Eclipse不会更改它们.
感谢大家


我们的系统管理员已经安装了一个包,所以我可以删除我的本地副本。我想说
pip uninstall --user <package>
Run Code Online (Sandbox Code Playgroud)
但pip uninstall不支持--user。(至少pip 1.5.4在 Linux 上没有。)是否有一种简单的方法可以手动执行此操作,即删除包含包的目录?
我有一个有效的 IntelliJ IDEA 运行配置。它使用 Spring Boot。
我想从 MacOS 命令行执行相同的运行。如何让 IntelliJ IDEA 显示我需要执行运行配置的命令(或多个命令)。
这是gradle build.gradle文件:
plugins {
id 'org.springframework.boot' version '2.6.4'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'org.mountsinai'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = "15"
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jdbc'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
runtimeOnly 'com.microsoft.sqlserver:mssql-jdbc'
implementation group: 'org.springframework', name: 'spring-aspects', version: '5.3.15'
implementation group: 'nz.net.ultraq.thymeleaf', name: 'thymeleaf-layout-dialect', version: '3.0.0'
implementation group: 'com.jayway.jsonpath', name: 'json-path', version: '2.7.0'
implementation group: 'com.github.pcj', …Run Code Online (Sandbox Code Playgroud)