使用AJC的Gradle无法读取Lombok批注

时间:2019-01-10 22:02:39

标签: java gradle aspectj spring-aop lombok

我正在尝试将gradle插件中的ajc编译器添加到gradle项目中。不幸的是,在编译过程中,由于龙目岛,它向我显示了大量错误。

build.gradle:

group 'com.kmb.bank'
version '0.0.1-SNAPSHOT'

project.ext {
    aspectjVersion = '1.9.2'
}

buildscript {
    repositories {
        maven {
            url "https://plugins.gradle.org/m2/"
        }
    }
    dependencies {
        classpath "gradle.plugin.aspectj:gradle-aspectj:0.1.6"
    }
}

apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
apply plugin: "aspectj.gradle"

sourceCompatibility = 11
targetCompatibility = 11

repositories {
    mavenCentral()
}

dependencies {
    compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.7'
    testCompile group: 'junit', name: 'junit', version: '4.12'
    compile group: 'commons-codec', name: 'commons-codec', version: '1.11'

    implementation('org.springframework.boot:spring-boot-starter-amqp')
    implementation('org.springframework.boot:spring-boot-starter-web')
    compile("org.springframework.boot:spring-boot-starter-thymeleaf")
    compile ('org.springframework.boot:spring-boot-starter-security')
    compile("org.springframework.boot:spring-boot-starter-data-mongodb")
    compile group: 'org.springframework.boot', name: 'spring-boot-starter-   aop', version: '2.1.1.RELEASE'
    }

它向我显示了每个模型都没有getter和setter的错误。

1 个答案:

答案 0 :(得分:1)

这对我有用:

  .....
       prefsWindow.contentView = NSHostingView(rootView: prefsView)
       prefsWindow.makeKeyAndOrderFront(nil)
       prefsWindow.isReleasedWhenClosed = false

 }