I just updated to IntelliJ 2019.2 but I can't find the new Services tool window (described here). Neither View - Tool Windows - Services nor Alt + 8 is showing it. What am I missing?
Additional Information:
IntelliJ IDEA 2019.2 (Ultimate Edition)
Build #IU-192.5728.98, built on July 23, 2019
Runtime version: 11.0.3+12-b304.10 amd64
VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
Windows 7 6.1
The tool window automatically pops up when you run something related to a managed service (for example, run a Docker container). However, in case of run/debug configurations, you have to specify which types you want to be available in the Services tool window. For this, go to Run | Edit Configurations, select Templates, and add necessary configuration types to the Configurations available in Services list: https://blog.jetbrains.com/idea/2019/08/services-tool-window-one-place-to-rule-them-all/
Related
I have 4 Spring Boot applications and I decided to create a workspace to use single window for all of them. I created an Empty Project then added my projects via File -> New -> Module from Existing Sources. All looking good but when I add configuration Run/Debug Configurations, Compound, and click the (+) to add I got empty selection "Nothing to show" and an error message below "Run Configuration Error: There is nothing to run".
IntelliJ IDEA 2020.3 (Community Edition)
Build #IC-203.5981.155, built on December 1, 2020
Runtime version: 11.0.9+11-b1145.21 x86_64
VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o.
macOS 10.15.7
GC: ParNew, ConcurrentMarkSweep
You add to Compound Run Configuration other Run Configurations which were created previously. Please check Create compound run/debug configurations.
I want to select a new home directory for JDK, as I want to use a newer JDK. However, when selecting NEW -> JDK in the Project SDK settings, a Windows XP style dialog opens up, in which I can only select files and not directories. When I select an arbitrary file in the directory I really want to select, nothing happens.
This is the dialog I get:
This also applies to other projects, I have already invalidated my Caches and I'm sure it has worked once upon a time. This is the result I receive from "About":
IntelliJ IDEA 2019.1.3 (Ultimate Edition)
Build #IU-191.7479.19, built on May 28, 2019
Licensed to DPS Engineering GmbH / Timo Borner
You have a perpetual fallback license for this version
Subscription is active until June 18, 2020
JRE: 1.8.0_202-release-1483-b58 amd64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
Windows 10 10.0
Note that I have the same post on the IntelliJ support forum.
Deleting the file ide.general.xml solves the issue. It is not an elegant solution, because this seems to be a bug on the side of IntelliJ (see this ticket).
The problem is, that when syncing settings via the settings repository on Linux and Windows, weird things happen.
I have Intellij IDEA. Below are the details about it.
IntelliJ IDEA 2017.2.5
Build #IU-172.4343.14, built on September 26, 2017
Licensed to Rajkumar Natrajan
JRE: 1.8.0_152-release-915-b12 x86_64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
Mac OS X 10.12.6
I have latest scala plugin for IntelliJ installed as well.
But when I try to create the dotty project using the documentation here, I couldn't see the option. Below is the screen shot.
Do I miss any settings?
Choose SBT first, then on the next step you will be able to select Dotty:
Related ticket.
I'm having a annoying problem since I update IntelliJ IDEA Community to this version:
IntelliJ IDEA 2017.2
Build #IC-172.3317.76, built on July 15, 2017
JRE: 1.8.0_152-release-915-b5 amd64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
Linux 4.8.0-53-generic
There is a problem with "Main Menu/Navigate/Class" action. When a trigger this action using keyboard shortcut or menu access, most of time the "Enter class name" window is showed, but closes immediately.
Sometimes the action works ok, but most of time, not.
I'm using linux Mint 18.2 (Cinnamon).
It's a known issue, please follow it here for updates:
IDEA-173000 Navigate | File and Class popups disappear
Workaround (add the following via Help | Edit Custom VM Options):
-DactionSystem.xWindow.remove.focus.from.nonFocusable.popups=false
Downgrading to 2017.1 version is another option.
UPDATE: the issue is resolved in 2017.2.3 release.
According to the release notes it's fixed in the latest release - 2017.2.3 (build number IU-172.3968.16) - 173000 is in the list: https://confluence.jetbrains.com/display/IDEADEV/IntelliJ+IDEA+2017.2.3+Release+Notes?fromIDE
What ultimately worked for me was adding -Dfocus.follows.mouse.workarounds=true to my custom VM options (Help > Edit Custom VM Options).
I found this in https://youtrack.jetbrains.com/issue/IDEA-173000, mentioned above.
I use a tiling window manager (i3) which I suspect is related.
How do i configure WebLogic 8.1 to use a specific JRE / JDK on my development machine. I realized that it is using hot spot and i would like to change it to run on JRockit.
You need to change the JAVA_VENDOR setting in the setDomainEnv.sh/.cmd file (depending whether you are running a Linux or Windows box).
Adding/changing the following lines to the start of your setDomainEnv file should work:
set JAVA_VENDOR=BEA
set BEA_JAVA_HOME=(path to your jrockit installation, e.g. c:\BEA\jrockit)
Now you should start the server. You can monitor, in the console (stdout), the indication about which Java version is being used:
starting weblogic with Java version:
java version "1.6.0_05"
Java(TM) SE Runtime Environment (build 1.6.0_05-b13)
BEA JRockit(R) (build R27.6.0-50_o-100423-1.6.0_05-20080626-2105-windows-ia32, compiled mode)
It is also possible to do it during the configuration wizard, when you are adding a domain, under the Java SDK Selections tab.