You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error Using deprecated '-debug' fallback for parameter name resolution. Compile the affected code with '-parameters' instead or avoid its introspection: org.springframework.amqp.rabbit.core.RabbitAdmin
#88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Hola buenas tardes, estoy implementando reactive-commons con RabbitMQ pero no he podido iniciar una api exponiendo un evento, relaciono a continuación: por.xml :
@configuration
@EnableMessageListeners
public class PersonListener {
public final String EVENT_PERSON_GET_INFO = "event.subscribe.person.get.info";
@Bean
public HandlerRegistry notificationEvents() {
return HandlerRegistry.register()
.serveQuery(EVENT_PERSON_GET_INFO, this::getInfoByPersonId, PersonQuery.class);
}
private Mono<PersonReply> getInfoByPersonId(PersonQuery query) {
return Mono.just(PersonReply.builder().name("Diego").address("manzana ### casa ###").build());
}
}
Error en log:
Using deprecated '-debug' fallback for parameter name resolution. Compile the affected code with '-parameters' instead or avoid its introspection: org.springframework.amqp.rabbit.core.RabbitAdmin
@dericop ya este tipo de implementación esta deprecada? como podría implementarlo? Mil gracias!
The text was updated successfully, but these errors were encountered:
Hola buenas tardes, estoy implementando reactive-commons con RabbitMQ pero no he podido iniciar una api exponiendo un evento, relaciono a continuación:
por.xml :
4.0.0
org.springframework.boot
spring-boot-starter-parent
3.1.1
com.example
demo
0.0.1-SNAPSHOT
demo
Demo project for Spring Boot
<java.version>17</java.version>
org.springframework.boot
spring-boot-starter
implementación:
package com.example.demo.event_driven;
import org.reactivecommons.async.api.HandlerRegistry;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import reactor.core.publisher.Mono;
@configuration
@EnableMessageListeners
public class PersonListener {
}
}
Error en log:
Using deprecated '-debug' fallback for parameter name resolution. Compile the affected code with '-parameters' instead or avoid its introspection: org.springframework.amqp.rabbit.core.RabbitAdmin
@dericop ya este tipo de implementación esta deprecada? como podría implementarlo? Mil gracias!
The text was updated successfully, but these errors were encountered: