java - Integrating AWS Lambda with Spring app -
i´m having problems here aws lambda project. have lambda here needs make call other spring library, , library makes soap call our partner.
my lambda normal aws lambda class , other app spring project, has 1 class call our soap partner.
first getting logs spring , noticed looping class loading. still can´t make work here.
has did this? think spring library isn´t starting correctly here.
any welcome. lot.
update: here code spring library.
@springbootapplication(scanbasepackages={"com.fenix.client"}) @configuration @enableautoconfiguration(exclude={persistenceexceptiontranslationautoconfiguration.class}) @componentscan(basepackages = "com.fenix.client") public class aplicacao extends springbootservletinitializer {
private applicationcontext applicationcontext; public static void main (string[] args) { springapplication app = new springapplication(aplicacao.class); app.setlogstartupinfo(false); app.run(args); } public aplicacao() { applicationcontext = new annotationconfigapplicationcontext(aplicacao.class); } public applicationcontext getapplicationcontext() { return applicationcontext; } }
@component public class tranclient extends webservicegatewaysupport {
@suppresswarnings("unchecked") public traninvoke sendcompassrequest(traninvoke traninvoke) { system.out.println("compassrequest"); objectfactory factory = new objectfactory(); jaxbelement<traninvoke> invoke = factory.createtran(traninvoke); return ((jaxbelement<traninvoke>) getwebservicetemplate().marshalsendandreceive(invoke)).getvalue(); } @suppresswarnings("unchecked") public selectsubjectsinvoke sendcompassrequest(selectsubjectsinvoke subjectsinvoke) { objectfactory factory = new objectfactory(); jaxbelement<selectsubjectsinvoke> invoke = factory.createselectsubjects(subjectsinvoke); return ((jaxbelement<selectsubjectsinvoke>) getwebservicetemplate().marshalsendandreceive(invoke)).getvalue(); } @suppresswarnings("unchecked") public selectcontractsinvoke sendcompassrequest(selectcontractsinvoke contractsinvoke) { objectfactory factory = new objectfactory(); jaxbelement<selectcontractsinvoke> invoke = factory.createselectcontracts(contractsinvoke); return ((jaxbelement<selectcontractsinvoke>) getwebservicetemplate().marshalsendandreceive(invoke)).getvalue(); } @suppresswarnings("unchecked") public selecttokensinvoke sendcompassrequest(selecttokensinvoke tokensinvoke) { objectfactory factory = new objectfactory(); jaxbelement<selecttokensinvoke> invoke = factory.createselecttokens(tokensinvoke); return ((jaxbelement<selecttokensinvoke>) getwebservicetemplate().marshalsendandreceive(invoke)).getvalue(); } @suppresswarnings("unchecked") public selecttransinvoke sendcompassrequest(selecttransinvoke transinvoke) { objectfactory factory = new objectfactory(); jaxbelement<selecttransinvoke> invoke = factory.createselecttrans(transinvoke); return ((jaxbelement<selecttransinvoke>) getwebservicetemplate().marshalsendandreceive(invoke)).getvalue(); } }
public class compassclient { private tranclient client = null; public compassclient() { if(client == null) { aplicacao app = new aplicacao(); this.client = app.getapplicationcontext().getbean(tranclient.class); } } public traninvoke sendrequest(traninvoke traninvoke) { system.out.println("sendrequest"); return client.sendcompassrequest(traninvoke); } public selectsubjectsinvoke sendrequest(selectsubjectsinvoke subjectsinvoke) { return client.sendcompassrequest(subjectsinvoke); } public selectcontractsinvoke sendrequest(selectcontractsinvoke contractsinvoke) { return client.sendcompassrequest(contractsinvoke); } public selecttokensinvoke sendrequest(selecttokensinvoke tokensinvoke) { return client.sendcompassrequest(tokensinvoke); } public selecttransinvoke sendrequest(selecttransinvoke transinvoke) { return client.sendcompassrequest(transinvoke); } }
11:16:21.863 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registering bean definition @bean method org.springframework.boot.autoconfigure.validation.validationautoconfiguration.methodvalidationpostprocessor() 11:16:21.864 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.864 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.864 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registered bean definition imported class 'org.springframework.boot.autoconfigure.jmx.jmxautoconfiguration' 11:16:21.865 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.beantyperegistry' 11:16:21.881 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.881 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registering bean definition @bean method org.springframework.boot.autoconfigure.jmx.jmxautoconfiguration.mbeanexporter() 11:16:21.882 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.beantyperegistry' 11:16:21.882 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.882 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registering bean definition @bean method org.springframework.boot.autoconfigure.jmx.jmxautoconfiguration.objectnamingstrategy() 11:16:21.883 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.beantyperegistry' 11:16:21.883 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.883 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registering bean definition @bean method org.springframework.boot.autoconfigure.jmx.jmxautoconfiguration.mbeanserver() 11:16:21.883 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.884 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.beantyperegistry' 11:16:21.884 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.884 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registered bean definition imported class 'org.springframework.boot.autoconfigure.context.configurationpropertiesautoconfiguration' 11:16:21.885 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.902 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.902 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registered bean definition imported class 'org.springframework.boot.autoconfigure.jdbc.datasourcetransactionmanagerautoconfiguration$transactionmanagementconfiguration' 11:16:21.903 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.beantyperegistry' 11:16:21.903 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.903 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registered bean definition imported class 'org.springframework.boot.autoconfigure.jdbc.datasourcetransactionmanagerautoconfiguration' 11:16:21.904 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.904 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.beantyperegistry' 11:16:21.904 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.905 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registered bean definition imported class 'org.springframework.boot.autoconfigure.transaction.transactionautoconfiguration' 11:16:21.905 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.beantyperegistry' 11:16:21.921 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.922 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registering bean definition @bean method org.springframework.boot.autoconfigure.transaction.transactionautoconfiguration.platformtransactionmanagercustomizers() 11:16:21.922 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.922 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registered bean definition imported class 'org.springframework.boot.autoconfigure.gson.gsonautoconfiguration' 11:16:21.922 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.beantyperegistry' 11:16:21.923 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.923 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registering bean definition @bean method org.springframework.boot.autoconfigure.gson.gsonautoconfiguration.gson() 11:16:21.923 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.923 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.924 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registered bean definition imported class 'org.springframework.boot.autoconfigure.web.httpmessageconvertersautoconfiguration$stringhttpmessageconverterconfiguration' 11:16:21.924 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.beantyperegistry' 11:16:21.924 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.924 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registering bean definition @bean method org.springframework.boot.autoconfigure.web.httpmessageconvertersautoconfiguration$stringhttpmessageconverterconfiguration.stringhttpmessageconverter() 11:16:21.925 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.925 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.941 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.beantyperegistry' 11:16:21.941 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.942 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registered bean definition imported class 'org.springframework.boot.autoconfigure.web.jacksonhttpmessageconvertersconfiguration$mappingjackson2httpmessageconverterconfiguration' 11:16:21.942 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.beantyperegistry' 11:16:21.942 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.943 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registering bean definition @bean method org.springframework.boot.autoconfigure.web.jacksonhttpmessageconvertersconfiguration$mappingjackson2httpmessageconverterconfiguration.mappingjackson2httpmessageconverter() 11:16:21.943 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registered bean definition imported class 'org.springframework.boot.autoconfigure.web.jacksonhttpmessageconvertersconfiguration' 11:16:21.943 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.944 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.beantyperegistry' 11:16:21.945 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.945 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registered bean definition imported class 'org.springframework.boot.autoconfigure.web.gsonhttpmessageconvertersconfiguration' 11:16:21.945 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registered bean definition imported class 'org.springframework.boot.autoconfigure.web.httpmessageconvertersautoconfiguration' 11:16:21.945 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.beantyperegistry' 11:16:21.945 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.946 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registering bean definition @bean method org.springframework.boot.autoconfigure.web.httpmessageconvertersautoconfiguration.messageconverters() 11:16:21.946 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.946 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registered bean definition imported class 'org.springframework.boot.autoconfigure.elasticsearch.jest.jestautoconfiguration' 11:16:21.946 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.beantyperegistry' 11:16:21.947 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.947 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registering bean definition @bean method org.springframework.boot.autoconfigure.elasticsearch.jest.jestautoconfiguration.jestclient() 11:16:21.947 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registered bean definition imported class 'org.springframework.boot.autoconfigure.info.projectinfoautoconfiguration' 11:16:21.948 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.948 [main] debug org.springframework.core.env.propertysourcespropertyresolver - not find key 'spring.info.build.location:classpath:meta-inf/build-info.properties' in property source 11:16:21.948 [main] debug org.springframework.core.env.propertysourcespropertyresolver - not find key 'spring.info.build.location' in property source 11:16:21.948 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.949 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.949 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.beantyperegistry' 11:16:21.949 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.949 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.950 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.950 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registered bean definition imported class 'org.springframework.boot.autoconfigure.web.multipartautoconfiguration' 11:16:21.950 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.beantyperegistry' 11:16:21.950 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.951 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registering bean definition @bean method org.springframework.boot.autoconfigure.web.multipartautoconfiguration.multipartconfigelement() 11:16:21.951 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.beantyperegistry' 11:16:21.951 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.951 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registering bean definition @bean method org.springframework.boot.autoconfigure.web.multipartautoconfiguration.multipartresolver() 11:16:21.951 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.952 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registered bean definition imported class 'org.springframework.boot.autoconfigure.web.webclientautoconfiguration$resttemplateconfiguration' 11:16:21.952 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.condition.beantyperegistry' 11:16:21.952 [main] debug org.springframework.beans.factory.support.defaultlistablebeanfactory - returning cached instance of singleton bean 'autoconfigurationreport' 11:16:21.952 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registering bean definition @bean method org.springframework.boot.autoconfigure.web.webclientautoconfiguration$resttemplateconfiguration.resttemplatebuilder() 11:16:21.952 [main] debug org.springframework.context.annotation.configurationclassbeandefinitionreader - registered bean definition imported class 'org.springframework.boot.autoconfigure.web.webclientautoconfiguration' 11:16:21.964 [main] debug org.springframework.context.annotation.configurationclassenhancer - enhanced com.fenix.client.aplicacao; enhanced class name is: com.fenix.client.aplicacao$$enhancerbyspringcglib$$90e93fe0 11:16:21.964 [main] debug org.springframework.context.annotation.configurationclasspostprocessor - replacing bean definition 'aplicacao' existing class 'com.fenix.client.aplicacao' enhanced class 'com.fenix.client.aplicacao$$enhancerbyspringcglib$$90e93fe0' 11:16:21.964 [main] debug org.springframework.context.annotation.configurationclassenhancer - enhanced com.fenix.client.soapclientconfig; enhanced class name is: com.fenix.client.soapclientconfig$$enhancerbyspringcglib$$bd76c1d 11:16:21.964 [main] debug org.springframework.context.annotation.configurationclasspostprocessor - replacing bean definition 'soapclientconfig' existing class 'com.fenix.client.soapclientconfig' enhanced class 'com.fenix.client.soapclientconfig$$enhancerbyspringcglib$$bd76c1d' 11:16:21.965 [main] debug org.springframework.context.annotation.configurationclassenhancer - enhanced org.springframework.boot.autoconfigure.context.propertyplaceholderautoconfiguration; enhanced class name is: org.springframework.boot.autoconfigure.context.propertyplaceholderautoconfiguration$$enhancerbyspringcglib$$58e673d3 11:16:21.965 [main] debug org.springframework.context.annotation.configurationclasspostprocessor - replacing bean definition 'org.springframework.boot.autoconfigure.context.propertyplaceholderautoconfiguration' existing class 'org.springframework.boot.autoconfigure.context.propertyplaceholderautoconfiguration' enhanced class 'org.springframework.boot.autoconfigure.context.propertyplaceholderautoconfiguration$$enhancerbyspringcglib$$58e673d3' 11:16:21.965 [main] debug org.springframework.context.annotation.configurationclassenhancer - enhanced org.springframework.boot.autoconfigure.context.propertyplaceholderautoconfiguration; enhanced class name is: org.springframework.boot.autoconfigure.context.propertyplaceholderautoconfiguration$$enhancerbyspringcglib$$58e673d3 11:16:21.965 [main] debug org.springframework.context.annotation.configurationclasspostprocessor - replacing bean definition 'propertysourcesplaceholderconfigurer' existing class 'org.springframework.boot.autoconfigure.context.propertyplaceholderautoconfiguration' enhanced class 'org.springframework.boot.autoconfigure.context.propertyplaceholderautoconfiguration$$enhancerbyspringcglib$$58e673d3' 11:16:21.965 [main] debug org.springframework.context.annotation.configurationclassenhancer - enhanced org.springframework.boot.autoconfigure.jackson.jacksonautoconfiguration$jackson2objectmapperbuildercustomizerconfiguration; enhanced class name is: org.springframework.boot.autoconfigure.jackson.jacksonautoconfiguration$jackson2objectmapperbuildercustomizerconfiguration$$enhancerbyspringcglib$$21272933 11:16:21.965 [main] debug org.springframework.context.annotation.configurationclasspostprocessor - replacing bean definition 'org.springframework.boot.autoconfigure.jackson.jacksonautoconfiguration$jackson2objectmapperbuildercustomizerconfiguration' existing class 'org.springframework.boot.autoconfigure.jackson.jacksonautoconfiguration$jackson2objectmapperbuildercustomizerconfiguration' enhanced class 'org.springframework.boot.autoconfigure.jackson.jacksonautoconfiguration$jackson2objectmapperbuildercustomizerconfiguration$$enhancerbyspringcglib$$21272933' 11:16:21.965 [main] debug org.springframework.context.annotation.configurationclassenhancer - enhanced org.springframework.boot.autoconfigure.jackson.jacksonautoconfiguration$jacksonobjectmapperbuilderconfiguration; enhanced class name is: org.springframework.boot.autoconfigure.jackson.jacksonautoconfiguration$jacksonobjectmapperbuilderconfiguration$$enhancerbyspringcglib$$66104344 11:16:21.965 [main] debug org.springframework.context.annotation.configurationclasspostprocessor - replacing bean definition 'org.springframework.boot.autoconfigure.jackson.jacksonautoconfiguration$jacksonobjectmapperbuilderconfiguration' existing class 'org.springframework.boot.autoconfigure.jackson.jacksonautoconfiguration$jacksonobjectmapperbuilderconfiguration' enhanced class 'org.springframework.boot.autoconfigure.jackson.jacksonautoconfiguration$jacksonobjectmapperbuilderconfiguration$$enhancerbyspringcglib$$66104344' 11:16:21.966 [main] debug org.springframework.context.annotation.configurationclassenhancer - enhanced org.springframework.boot.autoconfigure.jackson.jacksonautoconfiguration$jacksonobjectmapperconfiguration; enhanced class name is: org.springframework.boot.autoconfigure.jackson.jacksonautoconfiguration$jacksonobjectmapperconfiguration$$enhancerbyspringcglib$$b3c3812b 11:16:21.966 [main] debug org.springframework.context.annotation.configurationclasspostprocessor - replacing bean definition 'org.springframework.boot.autoconfigure.jackson.jacksonautoconfiguration$jacksonobjectmapperconfiguration' existing class 'org.springframework.boot.autoconfigure.jackson.jacksonautoconfiguration$jacksonobjectmapperconfiguration' enhanced class 'org.springframework.boot.autoconfigure.jackson.jacksonautoconfiguration$jacksonobjectmapperconfiguration$$enhancerbyspringcglib$$b3c3812b' 11:16:21.966 [main] debug org.springframework.context.annotation.configurationclassenhancer - enhanced org.springframework.boot.autoconfigure.jackson.jacksonautoconfiguration; enhanced class name is: org.springframework.boot.autoconfigure.jackson.jacksonautoconfiguration$$enhancerbyspringcglib$$95cf1eba 11:16:21.966 [main] debug org.springframework.context.annotation.configurationclasspostprocessor - replacing bean definition 'org.springframework.boot.autoconfigure.jackson.jacksonautoconfiguration' existing class 'org.springframework.boot.autoconfigure.jackson.jacksonautoconfiguration' enhanced class 'org.springframework.boot.autoconfigure.jackson.jacksonautoconfiguration$$enhancerbyspringcglib$$95cf1eba'
Comments
Post a Comment