44,059 questions
0
votes
0
answers
37
views
Kotlin destructuring declaration from a run block -- compiler error, or my error? [closed]
In the example below, if I try to turn val x into val (x,y) IDE complains vigorously.
If I try to make the return an explicit pair for the val (p,q) assignment it get the same errors.
I do not ...
0
votes
0
answers
52
views
Java project dependency jar - only part of new code being recognized [closed]
I have a Java service that relies on a dependency jar that I have modified. Within the dependency I have updated 2 different sections of code for unrelated functionality. I have updated the version of ...
-5
votes
1
answer
67
views
How to change IntelliJ terminal font colors [closed]
Terminal screenshot
I am using the default IntelliJ theme, but inside the terminal, the colors of the font I type and the response I get are a white pale yellow color, which is often hard to read.
I ...
Tooling
0
votes
0
replies
24
views
Accessing coverage report as a database
I'm working on a large java project and want to analyse the coverage of the Database-layer in the System. For that purpose, I'm generating a code coverage Report with Intellij. It allows me to see the ...
0
votes
1
answer
64
views
IntelliJ IDEA doesn't see type from .m2 jar
A Maven dependency is loaded, expected types are present in the jar in .m2, yet IntelliJ paints the import in red.
I tried deleting the dependency directory and loading it again, it didn't help.
<?...
-1
votes
0
answers
70
views
Is it possible to link/run Gradle tasks in comments in IntelliJ Idea? [closed]
I am using IntelliJ Idea with Gradle. Take for example:
/**
* Make sure to run the runData configuration before starting the client
*/
could runData there be substituted for something clickable/...
-1
votes
0
answers
38
views
Errors launching Spring Boot application with application configuration
I'm working on a Spring Boot application using IntelliJ IDEA. I can run the application locally with a Maven run configuration using the goal spring-boot:run, and it works as expected, I have also ...
-3
votes
0
answers
57
views
How to run a Spring Boot application in IntelliJ with debugging enabled? [closed]
I'm working on a Spring Boot application using IntelliJ IDEA. I can run the application locally with a Maven run configuration using the goal spring-boot:run, and it works as expected.
However, this ...
0
votes
1
answer
112
views
Parameter Info popup is extremely small and can’t be resized on macOS
I have an issue regarding the popup window size.
When I press View Parameter Info (⌘P) in PhpStorm, the popup window that shows the function parameters is extremely small. Its height is about 20–30px, ...
0
votes
1
answer
72
views
Gluon plugin IntelliJ 2025.1+ dependency on com.intellij.javafx
With this announcement: https://platform.jetbrains.com/t/javafx-runtime-for-plugins-is-deprecated-in-2025-1/944
It is obvious why this is not working. However, I have not been able to find a ...
1
vote
1
answer
48
views
Is there a way to review PR's (GitHub) within IntelliJ IDEA
Using IntelliJ IDEA 2025.2.4. Our repos are private in a GitHub organization. I want to review the PR's within IntelliJ IDEA. I know it's possible via the native GitHub plugin of JetBrains. But ...
Tooling
1
vote
2
replies
46
views
PyCharm doesn't highlight problem files/directories in the files tree
I'm just amazed, but is there really no function for highlighting directories and files with problematic code?
The thing is, in one of my projects, I used JS in PyCharm, and there is a linter called ...
-1
votes
0
answers
108
views
Need help compiling a JavaFx project [duplicate]
Created a JavaFX app using Java 21 and copied this tutorial to build my project
https://www.youtube.com/watch?v=udigo_qSp_k
I then created my project, and everything ran fine in an IDE. When trying to ...
0
votes
1
answer
40
views
DBMS_SQL.RETURN_RESULT specifically in IntelliJ's Query Console
I'm trying to replicate this kind of SQLPlus code specifically in IntelliJ's Query Console connected to an Oracle DB:
-- this syntax not available in IntelliJ's Query console.
variable rc refcursor;
...
0
votes
0
answers
64
views
IntelliJ IDEA hides method chain inlay hints when followed by comment
I work for a fairly large company that unfortunately has an unchangeable company policy of enforcing line breaks in method chains only via line comments due to the mandated formatter.
So our chains ...
1
vote
0
answers
34
views
IntelliJ Idea does not show the layout editing view
I've installed IntelliJ Idea 2025.2.4 in order to create an app for smartphones, and since I'm only a bit familiar with activity views, I've selected the item "empty activity" from the menu ...
1
vote
1
answer
68
views
Why is my project controller doesn't see my templates views?
I started new project with spring boot starter web and ran into a problem.
package com.example.project2;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind....
0
votes
1
answer
113
views
Hide inner classes as separate files in Project View in IntelliJ IDEA
I'm facing an issue with IntelliJ IDEA where it displays classes contained within a Java file as separate nodes in the Project View, rather than showing just the single .java file.
Problem:
In my ...
0
votes
1
answer
50
views
How to configure the code style PREVIEW right margin?
in Idea code style settings for most tabls the preview panel has line width of 100 characters and for the "Wrapping and Braces" tab the line width is 37 characters. I can't find where it's ...
1
vote
0
answers
70
views
Android emulator not running from Play button in both IntelliJ and Android Studio on Linux, but it does from command line, and logcat show nothing
PROBLEM
Hi, I have IntelliJ Ultimate 2025.2.4, and Android Studio 2025.2.1. When I create a new default project in either one > download all the sources it needs > sync gradle > then click ...
0
votes
0
answers
62
views
Playwright tests cannot be run in Intellij IDEA if it is extended
I want to use fixtures in my project, but when I extend test from Playwright - those tests don't have run button. I referred to the Playwright docs, took their code and just removed some lines to make ...
2
votes
1
answer
66
views
Sorting the file structure list (Ctrl+F12)
Pressing Ctrl+F12 displays the file structure with a list of all fields and methods. Is it possible to change the sorting of this list so that the fields are displayed first and then the methods?
The ...
0
votes
1
answer
66
views
IDEA failed to recognize jasypt configurations
-Djasypt.encryptor.password=abc in VM options
or
--jasypt.encryptor.password=abc in program arguments
even
jasypt.encryptor.password=abc in environment variables
cannot make IDEA start program ...
1
vote
1
answer
94
views
Using IntelliJ, how can I find unused code or code used in tests only
I need to clean up my project that is written in Typescript.
I want to find all code (functions, classes, class functions, etc) that are unused. If a function is used only in a test file, it is unused ...
1
vote
1
answer
124
views
How do I convert a JavaFX application into an executable .jar file with all dependencies included?
I’ve built a modular JavaFX application using JDK 21 and JavaFX SDK 21.0.1. The project runs perfectly inside my IDE (IntelliJ IDEA), but when I try to export it as a .jar file and run it outside the ...
0
votes
0
answers
35
views
IntelliJ does not fully support dependency substitution (version catalogue to local project)
In my root projects build.gradle.kts I do following:
fun DependencySubstitutions.substitute(
lib: Provider<MinimalExternalModuleDependency>,
module: String,
) {
val dep = lib.get()
...
0
votes
0
answers
89
views
Encoding in run console can't be changed to use UTF-8
My "console" (the run output window, not the terminal) does not use UTF-8 encoding, no matter what I try.
Observations:
if I run an Android project, the logcat does work
the terminal does ...
0
votes
0
answers
35
views
How to change Node.js Test Runner patterns in IntelliJ IDEA?
I've tried to using some Tests in IntelliJ IDEA (Ultimate) with TypeScript.
I've created the directory /tests/ and added an HelloWorld.ts:
import test from'node:test';
import assert from "node:...
0
votes
0
answers
67
views
My Flutter project using GetX no longer recognizes GetX reactive variables — the error: 'There isn't a setter named 'value' in class 'RxObjectMixin'
since last night I’ve been having the problem that my Flutter project can no longer be built because I’m getting compile errors in IntelliJ.
My code looks as follows
class GuestBookingDetailController ...
0
votes
1
answer
54
views
Can I connect a remote IntelliJ MCP server to Claude Desktop?
I’m currently using the local IntelliJ MCP server feature, and it works very well.
However, when I’m developing in a remote environment, I can’t connect to Claude Desktop.
Is there any solution for ...
0
votes
1
answer
49
views
Auto import for TS is not working in Intelij IDEA
I have 2 files in my project, and I want to use 1 class, the IDE doesn't propose to import that, how can I fix it? The class I want to import has "export" keyword, and the auto import is ...
0
votes
1
answer
46
views
Custom inspection using structural search that matches usages of an annotation without parameters?
In our codebase, we would like to highlight all usages of the @Modifying annotation that don't use @Modifying(clearAutomatically = true, flushAutomatically = true). These are currently the only two ...
2
votes
0
answers
107
views
Android Studio automatically rewrites Kotlin code when copying a file
When I copy a .kt file from one project to another (or within the same project) in Android Studio Narwhal 3 Feature Drop | 2025.1.3, the IDE automatically modifies parts of my Kotlin code.
Example:
...
0
votes
2
answers
122
views
NoClassDefFoundError: org/slf4j/LoggerFactory when running in Intellij but works fine from the command line
I am having issues related to my tests which are failing because of slf4j-api being absent, which does not make sense because it is present as it is provided as a transitive dependency from one of the ...
0
votes
0
answers
58
views
How to disable spell checking for hex color codes?
How to avoid spell checking for hex color codes like "#f8cecc" in PyCharm?
I would expect PyCharm to not check spelling for color codes.
I tried to use # noinspection but it did not work. I ...
-1
votes
1
answer
74
views
Maven Runner in IntelliJ
I am experiencing the following issue in IntelliJ's Maven Runner:
When I specify a trust store via Settings -> Maven Runner -> VM Options
and enter the TrustStore there (I need this for a ...
1
vote
1
answer
31
views
How to dissable progress bar in Intellij Http cli tool?
I wonder if there is a way to disable IntelliJ http cli tools progress bar?
Even if it is quite handy when run, it creates quite a few annoying logs when run in automation.
It's a bit exaggerated, ...
0
votes
0
answers
24
views
How to make Intellij IDEA recognize test classes when using Gradle JvmTestSuite?
In gradle.kts, I have:
testing {
suites {
val test by getting(JvmTestSuite::class) {
useJUnitJupiter()
}
val integrationTest by registering(JvmTestSuite::class) {
...
0
votes
1
answer
93
views
How to debug code generator files (that runs with `build_runner`) in flutter dart and android studio?
I am crating a custom code generator with the source_gen package.
I want to add break points in the generator class and debug my code when I running dart run build_runner build command.
Is there any ...
0
votes
0
answers
26
views
intellij-idea: Possible to reconnect to a .run.xml javaagent after intellij had been restarted
I have a java program started from a .run.xml intellij config, intellij died but process kept running and working fine. Is it possible for me to reconnect/attach to it so I can see the stderr and ...
3
votes
1
answer
209
views
How to add Unicode emoji to python script in IntelliJ
I have a script which I have created couple of months ago with an older version of Intellij + Python plugin. I had to migrate to new windows and also new IntelliJ
Currently I am using :
IntelliJ IDEA ...
2
votes
1
answer
177
views
Android Waiting for Target Device to Come Online in IntelliJ and Android Studio
PROBLEM
Hi, I'm getting an endless loop of "Waiting for all target devices to come online", or the emulator just shows the Android intro but never loads.
The JVM version of the program runs ...
1
vote
2
answers
107
views
IntelliJ IDEA: breakpoints don’t trigger when I run mvn spring-boot:run (Spring Boot 3, Java 17)
When I start the app with mvn spring-boot:run, my breakpoints don’t hit. I’m trying to debug a simple REST endpoint annotated with @GetMapping.
Minimal Reproducible Example:
@RestController
@...
-4
votes
1
answer
706
views
Provides transitive vulnerable dependency maven:ch.qos.logback:logback-core:1.5.18 CVE-2025-11226 6.9 Conditional processing of logback.xml
After reinstalling IntelliJ IDEA ULTIMATE (Now : 2025.2.3) I've got this warning message :
Provides transitive vulnerable dependency maven:ch.qos.logback:logback-core:1.5.18 CVE-2025-11226 6.9 ...
0
votes
0
answers
51
views
Configuring Tomcat in IntelliJ IDEA 2021 Edition
So recently I joined a Maven based Java project where the existing team is using Eclipse IDE. Earlier I have used only IntelliJ IDEA.
Now what I saw that they add a tomcat server in eclipse and during ...
1
vote
1
answer
86
views
Intellij & Clojure LSP - Getting Started
I'm just trying the Clojure LSP plugin in Intellij IDEA Community without knowing anything about Clojure or the plugin.
My goal is to start learning Clojure.
I installed the plugin and clojure-lsp via ...
0
votes
1
answer
25
views
How to pass system properties or env vars into JetBrains IDE through Starter framework
The JetBrains team illustrates a clean pattern for Plugin testing on their platform at https://plugins.jetbrains.com/docs/intellij/integration-tests-intro.html - the example is clean, it works, it all ...
1
vote
1
answer
222
views
Configure IntelliJ to generate Java 25+ code using IO rather than System.out/System.in
Java 25 gained the convenience class IO for simpler access to the console, with print, println, & readln methods. See JEP 512: Compact Source Files and Instance Main Methods for details.
In my ...
0
votes
1
answer
72
views
How to make dd ignore empty lines but yank to system clipboard and delete non-empty lines in IdeaVim?
I’m customising my .ideavimrc in PyCharm (2025.2.2, IdeaVim plugin) and want the dd command to behave smarter.
Empty line (only whitespace): delete without yanking (black hole register).
Non-empty ...
1
vote
1
answer
65
views
How to correctly incorporate GroupId in a JAR file using Gradle?
I have 2 projects, a LibraryProject and an ApplicationProject. ApplicationProject needs LibraryProject as a dependency.
In the LibraryProject, the build.gradle contains:
group = 'com.company.product'
...