其他分享
首页 > 其他分享> > 简单的@Configurable与现代spring-boot gradle

简单的@Configurable与现代spring-boot gradle

作者:互联网

我的目标是获得一个简单的方面,我可以在一个类上使用@Configurable.另一个限制是它需要使用加载时编织,因为Lombok不能与CTW一起使用.

好消息:我有它的工作!

坏消息:控制台充斥着[Xlint:cantFindType]错误.见下面的结果部分.

环境

我有一个用@Configurable注释的类.它是杰克逊使用和实例化的一个类,因此需要AOP.它不是很有趣所以我不会在这里展示它.它只是一个普通的类,带有Configurable的单个注释,里面有一个@Autowired bean.

SpringBootApplication

我的Application类具有通常的注释:

@SpringBootApplication
@EnableSpringConfigured
@EnableLoadTimeWeaving
public class MyApplication {

的build.gradle

我的build.gradle有所有常见的嫌疑人.样品:

configurations {
    springinstrument
}

dependencies {
    compile('org.projectlombok:lombok')

    compile('org.springframework.boot:spring-boot-starter-aop')
    compile("org.springframework.boot:spring-boot-starter-data-rest")
    compile('org.springframework.data:spring-data-rest-hal-browser')
    compile('org.springframework.boot:spring-boot-starter-data-jpa')
    compile('org.springframework.boot:spring-boot-starter-security')
    compile('org.springframework.boot:spring-boot-starter-web')
    compile('org.springframework.boot:spring-boot-devtools')
    compile('org.springframework.plugin:spring-plugin:1.2.0.RELEASE')
..snip..
    runtime('org.springframework:spring-instrument:4.+')
    springinstrument "org.springframework:spring-instrument:4.+"
    runtime configurations.springinstrument.dependencies
}

test.doFirst {
    jvmArgs "-javaagent:${configurations.springinstrument.asPath}"
}

jvm args

我正在使用以下args运行JUnit测试(通过Intellij的运行配置)

-ea
-javaagent:/Users/me/.gradle/caches/modules-2/files-2.1/org.springframework/spring-instrument/4.3.3.RELEASE/5db399fa5546172b9c107817b4abaae6b379bb8c/spring-instrument-4.3.3.RELEASE.jar

aop.xml文件

我有一个src / main / resources / META-INF / aop.xml包含:

<!DOCTYPE aspectj PUBLIC "-//AspectJ//DTD//EN" "http://www.eclipse.org/aspectj/dtd/aspectj.dtd">
<aspectj>
        <weaver options="-Xreweavable -showWeaveInfo">
        <!-- only weave classes with @Configurable interface -->
        <include within="@org.springframework.beans.factory.annotation.Configurable */>
    </weaver>
</aspectj>

但是,我怀疑这个文件没有被提取.我放在文件中的内容并不重要,结果总是一样的.即使我把随机无效的XML.

考试

junit测试是使用@Configurable注释类的简单Jackson序列化 – 反序列化测试.

测试类有注释:

@SpringBootTest
@RunWith(SpringRunner.class)

结果

通过Intellij运行junit测试时 – >它工作,但..

LTW是实际工作的,当我通过上面的jvm args运行Intellij时我的测试正在通过.

但是,应用程序的启动时间明显更长,并且日志充斥着Xlint:cantFindType错误

例:

2016-11-07 19:28:21.944  INFO 45213 --- [           main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
[AppClassLoader@18b4aac2] error can't determine implemented interfaces of missing type org.springframework.security.ldap.authentication.LdapAuthenticationProvider
when weaving type org.springframework.security.config.annotation.authentication.configurers.ldap.LdapAuthenticationProviderConfigurer
when weaving classes 
when weaving 
 [Xlint:cantFindType]
[AppClassLoader@18b4aac2] error can't determine implemented interfaces of missing type io.undertow.server.handlers.accesslog.AccessLogHandler
when weaving type org.springframework.boot.context.embedded.undertow.UndertowEmbeddedServletContainerFactory
when weaving classes 
when weaving 
 [Xlint:cantFindType]
[AppClassLoader@18b4aac2] error can't determine implemented interfaces of missing type io.undertow.server.handlers.accesslog.AccessLogHandler
when weaving type org.springframework.boot.context.embedded.undertow.UndertowEmbeddedServletContainerFactory
when weaving classes 
when weaving 
 [Xlint:cantFindType]
[AppClassLoader@18b4aac2] error can't determine implemented interfaces of missing type io.undertow.server.handlers.accesslog.AccessLogHandler
when weaving type org.springframework.boot.context.embedded.undertow.UndertowEmbeddedServletContainerFactory
when weaving classes 
when weaving 
 [Xlint:cantFindType]
.. many more.. all in the org.springframework.boot package

通过gradle命令行运行测试时 – >工作,有点.

当我使用gradle测试运行测试–tests * MyTestClass时,测试因为NullPointerException而失败.猜猜是什么,@Autowired bean我期望自动注入.

我得到它与gradle测试配置,huzzah!我已经更新了上面的配置.但是……它在我的IDE中运行它遇到了同样的问题:Xlint:cantFindType

所以问题:

> gradle配置错误,因此通过gradle运行应用程序失败.如何修复gradle配置?
> Xlint:cantFindType错误.是不是拿起了aop.xml?怎么解决这个?

我还没有找到一个使用aop.xml的简单的spring-boot gradle @Configurable示例

解决方法:

我解决了这个问题,而且相当尴尬.

>这是因为aop.xml没有被选中.
>该文件未被检测到,因为它位于类路径上名为META_INF /的目录中,而不是META-INF /.这是一个非常重要的区别.

无论如何,我已经用@Configurable使用现代spring-boot和gradle设置以及Lombok支持的加载时间编织所需的最小配置更新了这个问题.希望它对某人有用.

标签:spring-aop,spring,spring-boot,gradle,load-time-weaving
来源: https://codeday.me/bug/20190828/1755327.html