繁体   English   中英

我无法使用龙目岛生成吸气剂和二传手

[英]I can't generate getters and setters with lombok

我正在开发gradle项目,请查看我的build.gradle

buildscript {
    ext {
        springBootVersion = '1.5.7.RELEASE'
    }
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
    }
}

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'

group = 'com.support.wizard'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = 1.8

repositories {
    mavenCentral()
}

def swaggerVersion = "2.7.0"

dependencies {
    compile('org.springframework.boot:spring-boot-starter-data-jpa')
    compile('org.springframework.boot:spring-boot-starter-data-rest')
    compile('org.springframework.boot:spring-boot-starter-web')
    compile('org.springframework.boot:spring-boot-starter-security')
    compile('org.springframework.security.oauth:spring-security-oauth2')
    compile('org.springframework.integration:spring-integration-mail')
    compile group: 'com.sun.mail', name: 'javax.mail', version: '1.5.2'
    compile ("io.springfox:springfox-swagger2:${swaggerVersion}")
    compile ("io.springfox:springfox-swagger-ui:${swaggerVersion}")
    compile("mysql:mysql-connector-java:6.0.6")
    compileOnly('org.projectlombok:lombok')
    testCompile('org.springframework.boot:spring-boot-starter-test')
}

我正在使用日食霓虹灯。 我刷新gradle项目,但它没有为我的实体生成getter和setter。

喜欢 :

@Entity
@Table(name = "users")
@Data
@AllArgsConstructor
@NoArgsConstructor
public class UserEntity {

    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long id;

    private String email;

    private String username;

    private String password;

    private String phoneNumber;

    private String role;

    private String resetToken;

    private boolean enabled;
}

当使用Eclipse的快捷键Ctrl + O搜索类中的方法和字段时,我看不到类UserEntity的getter和setters。

您需要安装用于Eclipse的Lombok插件才能在IDE中查看生成的代码。 最简单的方法是使用任何lombok.jar包含的安装程序(甚至可以在本地Maven或Gradle缓存中找到的安装程序); 它是一个可执行的JAR。

对于IntelliJ,启用AnnotationProcessors:

设置>构建,执行,部署>编译器>注释处理器> 启用注释处理

我找到了一个解决方案,我下载了lombo jar,然后双击安装它,然后重新启动Eclipse,最终清理了我的项目

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM