idea-plugin-jpa-support icon indicating copy to clipboard operation
idea-plugin-jpa-support copied to clipboard

Generate entity/repositroy for JPA/Lombok/Spring Data JPA.

Results 27 idea-plugin-jpa-support issues
Sort by recently updated
recently updated
newest added

Bumps [junit-jupiter](https://github.com/junit-team/junit5) from 5.8.1 to 5.9.0. Release notes Sourced from junit-jupiter's releases. JUnit 5.9.0 = Platform 1.9.0 + Jupiter 5.9.0 + Vintage 5.9.0 See Release Notes. JUnit 5.9.0-RC1 = Platform...

dependencies

Bumps [mysql-connector-java](https://github.com/mysql/mysql-connector-j) from 8.0.26 to 8.0.30. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=mysql:mysql-connector-java&package-manager=gradle&previous-version=8.0.26&new-version=8.0.30)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Bumps [io.freefair.lombok](https://github.com/freefair/gradle-plugins) from 5.3.3.3 to 6.5.0.3. Release notes Sourced from io.freefair.lombok's releases. 6.5.0.3 What's Changed Bump plantuml from 1.2022.5 to 1.2022.6 by @​dependabot in freefair/gradle-plugins#553 Bump pluginVersion from 6.5.0-rc1 to...

dependencies

Bumps [lombok-plugin](https://github.com/freefair/gradle-plugins) from 5.3.3.3 to 6.5.0.3. Release notes Sourced from lombok-plugin's releases. 6.5.0.3 What's Changed Bump plantuml from 1.2022.5 to 1.2022.6 by @​dependabot in freefair/gradle-plugins#553 Bump pluginVersion from 6.5.0-rc1 to...

dependencies

Bumps [jackson-databind](https://github.com/FasterXML/jackson) from 2.12.4 to 2.13.3. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.fasterxml.jackson.core:jackson-databind&package-manager=gradle&previous-version=2.12.4&new-version=2.13.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Bumps [jackson-core](https://github.com/FasterXML/jackson-core) from 2.12.4 to 2.13.3. Commits e6c7055 [maven-release-plugin] prepare release jackson-core-2.13.3 fb0fce8 Prepare for 2.13.3 release da626f0 Reduce mvnw verbosity for GH action e75e093 Backport GH workflow change to...

dependencies

Bumps [lombok](https://github.com/projectlombok/lombok) from 1.18.20 to 1.18.24. Changelog Sourced from lombok's changelog. v1.18.24 (April 18th, 2022) PLATFORM: JDK18 support added. [Issue #3129](projectlombok/lombok#3129). PLATFORM: Using ecj and maven? There's now a command...

dependencies

支持 Kotlin 语言生成。

enhancement

Bumps [mybatis-generator-core](https://github.com/mybatis/generator) from 1.4.0 to 1.4.1. Release notes Sourced from mybatis-generator-core's releases. MyBatis Generator Release 1.4.1 This release is primarily focused on improving the generated code targeting MyBatis Dynamic SQL....

dependencies

**Describe the bug (描述这个Bug)** 根据[这篇文章](https://dzone.com/articles/lombok-and-jpa-what-may-go-wrong)的描述,在某些特定行为,比如使用一对多(@OneToMany)的情况下lombok的默认的@EqualsAndHashCode似乎会造成严重的内存和性能消耗,并且也应该适当限制@ToString注解的使用 jpa buddy也会对这种使用方式提出警告 我看了看模版,通过修改模版似乎也不好解决这个问题 **Expected behavior (期望的行为)** 希望把@Data换成@Getter @Setter @ToString @RequiredArgsConstructor 的注解组合并且添加单独的equals()和hashCode()实现 equals实现参考: ``` @Override public boolean equals(Object o) { if (this == o) return true;...

bug
good first issue