IntelliJ hotswap notification off
Asked Answered
B

2

12

I changed my IDE Eclipse to IntelliJ and everything is good except one thing. I use hotswap by adding springboot dependency.

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
    <version>1.4.2.RELEASE</version>
</dependency>

But the problem is IntelliJ shows a notification continuously that tells me "Loaded classes are up to date nothing to reload". It is really annoying. Please let me know how to turn off that notification. I think the posted picture below will show the problem well. Thank you so much.

screenshot

Beaton answered 4/2, 2020 at 8:42 Comment(3)
Do you use Spring Boot Debug Configuration? You can set updating classes and resources only on explicit action with the Run/Debug Configurations -> On frame deactivation set to Do nothing.Wrath
Thank you for your help. But the problem is not solved. If I changed "Do nothing" as you said, the hot swap is not working. The jsp source is not changed in time.Beaton
Added a bounty because I'm getting this problem as well when running the JBoss server, everytime Intellij loses focus, there's the notification and the taskbar blinking requesting focus. And no matter with you turn off hotswap notifications, or turn off ballon notifications, or turn off system notifications... And there's no answer for this in the intellij forums as well. Any ideas? Someone?Demythologize
R
1

Change the Popup type value in settings:

Settings -> Appearance & Behavior -> Notifications -> HotSwap

enter image description here

Rijeka answered 13/7, 2021 at 8:41 Comment(1)
I tried every change in this option, every type, and also disabling everything. Still the same.Demythologize
C
0

Turn off "Loaded classes are up to date. Nothing to reload

This got rid of the message for me:

  1. Open notifications
  2. Hover over "All files are up-to-date" notification. You will see the three vertical dots. Click the vertical dots
  3. Click "Settings" This opens the setting dialog.
  4. Select "Build finished"
  5. Change "Popup type" to "No popup"
Comfort answered 11/7 at 16:4 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.