Rain
- Total activity 38
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 12
-
Created Beans tab on intellij debugger says Application readiness check failed: JMX agent not loaded. Check that the application started successfully.
AnsweredI want to see beans loaded in my spring boot application. I see there is Beans, health, Mappings tabs on debugger. But when I click it it says:Application readiness check failed: JMX agent not load... -
Created Prevent intellij from formatting strings
AnsweredHi!I have this java code. String str = "a" + "b" + "c";When I format code with Ctrl + Alt + LIt becomes just String str = "a" + "b" + "c";How can I prevent this? I want to have ... -
Edited Line markers for duration of branch?
AnsweredHi! In Intellij when I change the code it shows green or blue color next to line numbers. After I git commit they go away. Is it possible to make them stay? I want them since the beginning of branc... -
Created Idea does not download maven sources
AnsweredHi! I want to download sources for .m2\repository\com\oracle\database\jdbc\ojdbc8\19.12.0.0\ojdbc8-19.12.0.0.jar!\oracle\jdbc\OracleDatabaseException.class When I click download sources button th... -
Created Intellij does not see maven dependencies.
AnsweredHi! I have maven project. I added this dependecy to pom.xml: <dependency> <groupId>org.locationtech.jts</groupId> <artifactId>jts-modules</artifactId> <version>1.18.2</version>... -
Created This run configuration freezes intellij itself
AnsweredHi! Myproject has multiple run configurations. All of them work fine except one. Here is this run configuration: <configuration name="Local Oracle DDL-auto" type="SpringBootApplicationConfigura... -
Created Looking for step-by-step guide to add drop frame to debugger
AnsweredHi!https://www.jetbrains.com/help/idea/altering-the-program-s-execution-flow.html#drop_frameThis manual talk about Drop Frame. I dont have this button. I couldnt add it from settings menu either. I... -
Created How to autoload code style from git?
AnsweredHi! I exported Intellij Idea code style XML from Settings > Editor > Code Style > Java. I want to share it with the rest of team. Would it be possible to make Intellij automatically load it? For e... -
Created Preserve original file encoding
AnsweredHi! I have encoding set to UTF-8. Now Idea changes non-utf-8 files to utf-8. However there are some files that I want to keep in their original encoding. How do I do that? From Settings > Editor > ... -
Created Exception breakpooint for specific line.
AnsweredHi! I have Java program. How can I have exception breakpoint for specific line? Intellij has it's option for exception breakpoints but they are global meaning that anything, including frameworks ca...