huyu-tom

Results 4 issues of huyu-tom

版本: SpringBoot3.1.6版本 和 rocketmq-spring-boot-starter 2.2.3版本 Native-Image之后错误信息 org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userRegisterListener': java.lang.IllegalStateException: org.apache.rocketmq.remoting.exception.RemotingSendRequestException: send request to failed at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:605) ~[ai:6.0.14] at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:520) ~[ai:6.0.14] at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:325) ~[ai:6.0.14] at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234)...

图片所展示的错误效果,但是按照提示执行命令,也是失败的,not found

** nginx日志 ![Image](https://github.com/user-attachments/assets/3d8ada18-4f76-427c-8807-90128e17303d) ![Image](https://github.com/user-attachments/assets/67859d43-ee87-4a08-be6e-cd46f04dfd70) ** nps日志 ![Image](https://github.com/user-attachments/assets/87ec2ab5-fc85-4f33-96c6-1930e48cf411)

bug

ConcurrentBag#remove() ```java public boolean remove(final T bagEntry) { if (!bagEntry.compareAndSet(STATE_IN_USE, STATE_REMOVED) && !bagEntry.compareAndSet(STATE_RESERVED, STATE_REMOVED) && !closed) { LOGGER.warn("Attempt to remove an object from the bag that was not borrowed or...