-
|
In my project, I have some abstract beans defined in XML. I found a bug where SpringBeanReload::preInstantiateSingleton is not checking if BeanDefinition::isAbstract before calling beanFactory.getBean(beanName); which causes my application to fail and I need to restart the server. The fix is pretty simple I just need to add this check in SpringBeanReload::530 line if statement. But I do not want to wait for too long. How can I get this fixed quickly so I don't have to wait until it is approved and another version is released at the same time I don't want any problems with the license. For reference, my project where I use the Hotswap agent as a utility during development is not under GPL-2 and is closed-source. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
If you need a quick fix, feel free to modify and rebuild Hotswap Agent yourself. GPL-2 allows this for personal or internal use, even in a closed-source project, as long as you don’t distribute the modified version. |
Beta Was this translation helpful? Give feedback.
If you need a quick fix, feel free to modify and rebuild Hotswap Agent yourself. GPL-2 allows this for personal or internal use, even in a closed-source project, as long as you don’t distribute the modified version.