1

I've installed intellij CE with jpabuddy but jpa buddy not appears to be working in my current project.

This is my current pom.xml dependencies section

<dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-mongodb</artifactId>
        </dependency>
        <dependency>
            <groupId>com.h2database</groupId>
            <artifactId>h2</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>3.12.0</version>
        </dependency>
        <dependency>
            <groupId>de.flapdoodle.embed</groupId>
            <artifactId>de.flapdoodle.embed.mongo</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.jeasy</groupId>
            <artifactId>easy-random-core</artifactId>
            <version>4.0.0</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-configuration-processor</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

This is my current IDE right panel... as you can see JPA Palette is missing.

I'm running IntelliJ in a Kubuntu 22.04

enter image description here

Installed Plugin

dmance
  • 628
  • 1
  • 8
  • 26

2 Answers2

3

After some research on this question https://stackoverflow.com/questions/71974527/jpa-buddy-missing-from-tool-window-in-intellij#:~:text=To%20see%20the%20JPA%20Buddy,is%20correct%20and%20reimport%20dependencies and some insights in the JPA BUDDY discord I've finally get the issue: It was running in minimalistic mode.

You can disable it following the documentation at its home page:

https://www.jpa-buddy.com/documentation/minimalistic-mode/#enabling-minimalistic-mode

dmance
  • 628
  • 1
  • 8
  • 26
0

I think you need the install the JPA Buddy plugin to see something in the right panel. Maven JPA dependencies are not enough.

Go to Preferences->Plugins and install JPA Buddy from the marketplace. Restart IntelliJ.

duffymo
  • 305,152
  • 44
  • 369
  • 561
  • sorry, i've miss to attach an screenshot of the evidence... i've already have the plugin installed – dmance Nov 07 '22 at 18:14
  • No license - does it work without one? Looks like a paid plugin. I don't use it myself. Spring JDBC is enough for me. – duffymo Nov 07 '22 at 18:26
  • They have free licence with the features I actually need... I have it at work and I love the JPA Pallete, it helps me to create some methods – dmance Nov 07 '22 at 18:37
  • Did you restart IntelliJ after installing the plugin? What about viewing Tool windows? Is that required to bring it up? – duffymo Nov 07 '22 at 18:53
  • Maybe this answer can help you: https://stackoverflow.com/questions/71974527/jpa-buddy-missing-from-tool-window-in-intellij#:~:text=To%20see%20the%20JPA%20Buddy,is%20correct%20and%20reimport%20dependencies. – duffymo Nov 07 '22 at 18:54
  • Thanks @duffymo that helped me... For some strange reason it was in minimalistic mode... – dmance Nov 09 '22 at 06:34