-
Notifications
You must be signed in to change notification settings - Fork 236
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.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Spring devtools classloader limitations [SWF-1690] #867
Comments
Rossen Stoyanchev commented I'll consider this although I'm concerned about potential side effects in more traditional application servers. Phil Webb what's your take on this? |
Phil Webb commented I think Rob changed something in Spring Session in a similar way to accommodate Devtools. I'm not sure what the impact will be on traditional app servers. My guess is that they will be fine but perhaps it should be an opt-in setting. |
David Melia commented Hi, I have a Spring Boot example on https://bitbucket.org/davidmelia/spring-boot-webflow-issue to illustrate this issue. Thanks |
David Melia commented
however it didn't solve my problem in https://bitbucket.org/davidmelia/spring-boot-webflow-issue Any ideas?? Thanks |
Rossen Stoyanchev commented Hm, no idea actually. I simply implemented the suggestion. Were you able to confirm the fix is indeed in place and being used, e.g. stepping through with a debugger? |
Rossen Stoyanchev commented David Melia thanks for the sample app. On closer look there are a number of places where a ClassLoader is used that may need to change. Modifying the one in FlowModelFlowBuilder#toClass does the trick for your example but overall this is going to take broader changes and more testing after which there is potential for regressions. So I am going to move the target to 2.5 only and revert the change made for 2.4.5. |
Rossen Stoyanchev commented I experimented with the attached example using Spring Web Flow 2.5.0.BUILD-SNAPSHOT and Spring Boot 2.0.0.RC1 and did not run into any issues. I made changes to If this still doesn't work for you please be more specific about the actual problem. |
Roland Mueller commented Why wasn't the opt-in implemented as suggested by Phil Webb ? This change breaks our application since we are using spring-webflow in OSGI bundles and these need the BundleClassLoader from Apache Felix. This is now replaced by Tomcats WebappClassLoader which leads to ClassNotFoundExceptions. It looks like the change here seems some Spring Boot specific hack, now others like us need to implement hacks to reverse the change... :( |
Roland Mueller commented See comment above, the change introduces bugs. |
Alvise Vitturi opened SWF-1690 and commented
With spring boot devtools there are known limitations:
You may need to use Spring’s ConfigurableObjectInputStream in combination with Thread.currentThread().getContextClassLoader().
The class SerializedFlowExecutionSnapshot use the base classloader instead of the restart classloader
Affects: 2.4.4
Issue Links:
("is duplicated by")
9 votes, 7 watchers
The text was updated successfully, but these errors were encountered: