Home > database >  JPABUDDY tabs not appear in my intellij project
JPABUDDY tabs not appear in my intellij project

Time:11-09

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

CodePudding user response:

After some research on this question https://stackoverflow.com/questions/71974527/jpa-buddy-missing-from-tool-window-in-intellij#:~:text=To see the JPA Buddy,is correct and reimport dependencies 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

CodePudding user response:

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.

  • Related