龙目岛注释和测试

lombok annotation and test

提问人:robert trudel 提问时间:11/17/2023 最后编辑:seenukarthirobert trudel 更新时间:11/17/2023 访问量:22

问:

我将 Spring Boot 3 与 Intellij 和 Lombok 一起使用。

在我的我有build.gradle

dependencies {

    implementation 'org.springframework.boot:spring-boot-starter-web'
    implementation 'org.springframework.boot:spring-boot-starter-security'
    testImplementation 'org.projectlombok:lombok:1.18.28'

    compileOnly 'org.projectlombok:lombok'
    annotationProcessor 'org.projectlombok:lombok'

    implementation 'org.springframework.boot:spring-boot-starter-data-jpa'

    implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.2.0'
    implementation 'org.springdoc:springdoc-openapi-starter-common:2.2.0'

    runtimeOnly group: 'com.oracle.database.jdbc', name: 'ojdbc11', version: '21.9.0.0'

    testImplementation 'org.springframework.security:spring-security-test'
    testImplementation 'org.springframework.boot:spring-boot-starter-test'

}

在我的测试类中,我使用了这个注释。

@Log4j2

我没有编辑器错误。

当我尝试构建时,出现错误找不到符号日志。

spring-boot intellij-idea 龙目岛

评论

0赞 sakura-bloom 11/17/2023
stackoverflow.com/questions/14866765/......
1赞 Toni 11/17/2023
这回答了你的问题吗?JUnit 不适用于 Lombok - 注释处理似乎不适用于测试类

答: 暂无答案