-
Notifications
You must be signed in to change notification settings - Fork 38.1k
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
Declare Spring modules with JDK 9 module metadata [SPR-13501] #18079
Comments
Sam Brannen commented Juergen Hoeller, is this issue a duplicate of #18289? |
Juergen Hoeller commented Not necessarily: This one is about shipping explicit |
Sam Brannen commented OK. I see the differences between the two issues now. Thanks for the clarification! |
Juergen Hoeller commented The Jigsaw page has just been updated with a proposal towards optional dependencies: |
Sam Brannen commented
Is that supposed to say "JDK 8"? |
Grigory Kislin commented
|
Juergen Hoeller commented This issue is marked as "General Backlog", indicating that we won't deal with it for 5.1 (otherwise it'd be marked for 5.1 GA still) and probably not in subsequent 5.x releases either (otherwise it'd be marked as "5.x Backlog"). Specifically, we can't ship All in all, my prediction about |
yboompook commented I tried to jlink my project with moditect (maven plugin to add module-info to dependencies that don't have one), java-11. I pass throw lot's of problem and it still doen't work, however I think my work could help you to make it work in spring 6. |
Any progress with this issue? |
Sounds like this will happen maybe 10-15 years from now and by then we'll be on JDK 50. |
also checking in, is there anything that other people can help with on this? as I too would like to see more done than simply automatic module naming. |
It seems that new Java features might be more feature rich when using module system with one example being JEP 409: Sealed classes:
While JEP 409 most likely won't be used much until JEP 406: Pattern Matching for switch comes out of preview, I believe this sets a clear precedent of where we are going. |
For the sake of clarity, you can build a |
Just to reemphasize my previous comment: this is first example, that I know of, of a Java language feature being semi locked behind modularization. Split packages are biggest obstacle to modularization and split packages are everywhere. Regarding the Sealed Classes and Pattern matching I believe the pragmatic choice today is to either:
I was surprised that things like Lombok work well with modularization with some configuration changes. The clean way forward is to modularize the whole application but the ecosystem is simply not ready for this and unless a major player like Spring or Jakarta or someone else pushes "small" library maintainers to modularise their code I don't see modularization happening any time soon - it's simply too big of an undertaking for every developer to isolate/repackage every dependency that breaks modularization rules. |
…info (#27254) * remove module-info, The Spring Framework 5.x does not support module-info.java in their libraries. We want to align this in our Spring implementations. spring-projects/spring-framework#18079 * remove surefire plugin java modules proeprties from pom.xml Co-authored-by: Xiaolu Dai <[email protected]>
Now that Spring Framework 6 is on the horizon, have there been any thoughts towards moving to modules? |
at least the most egregious problems appear to come from 3rd party starters, and not things spring itself depends on. Like vaadin. I want to buy all the people with green a "beer". Seems like it would be a good idea to go look/poke at anything that is in the tree of an org.springframework. |
@xenoterracide I have considered making pizza bounties. I have legitimately offered at least one person a pizza for merging a module-info PR though they didn't take me up on it. (yet, its still valid) Last night I handled JSQLParser/JSqlParser#1999 which is a dependency of spring-data-relational. Once they make their next release we should bump the dep version there I also made an issue on micrometer. micrometer-metrics/micrometer#4990 This is a wider ecosystem issue which is going to take a lot of work, convincing, arguments, and likely bribery. Best to start on it. |
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
@bowbahdoe is there a way to simplify the list down to direct dependencies of spring-framework, and not spring boot? So in this case starting with the most popular spring libraries, like spring-context, spring-web (and webmvc)? Otherwise a similar issues should be raised in the spring boot repo. |
Yes, but keep in mind im an idiot and its a bit of a jank script. If you can give me a POM file with all the root dependencies that would be enough to run it. Another potentially narrower place to start would be spring-petclinic. Since that is what could most easily be used to evaluate startup / perf benefits of a fully jlinked spring once we get there in however long |
@Sineaggi This is the list from just the org.springframework deps. The list for petclinic is longer. I'll figure out how best to present that at some point. But it was a good call to run it on all the spring framework deps. This confirms that everything with a group The yellow transitive deps just need to be updated as well so these parts can be jlinked. (edit: scratch that. this doesn't include optional dependencies) |
@bowbahdoe are we in any better shape after SB 3.3.0? any chance you can make your janky script auto update the site periodically? p.s. If I didn't say it already good work. p.p.s I don't see netflix DGS on there. |
@xenoterracide A problem with the script I made is that it doesn't include optional dependencies. This is actually pretty important because they at least need stable names too all the way up the chain. I highly encourage not relying on me to do novel work in any reasonable time frame. If you have an interest you should try to edit the script and make it more robust / usable for actual tracking rather than an info dump. Maybe @sgammon has some intuition on how to proceed? (from another modularization thread) |
Heya @bowbahdoe Happy to help, but the deadlock on JPMS is probably greater than Spring: JPMS support still hasn't quite landed in e.g. Guava. Using Many projects seem to have adopted I am trying to push the ecosystem to support JPMS, via the I would be happy to host experimental libs in that repo if it would help, or to help generally with JPMS, but my guess is that (1) Spring's project authors know better than me what to do, and that (2) even if Spring were fully JPMS-enabled, upstream libs would probably preclude I would be shocked if a Spring app of reasonable complexity didn't have Guava in the dependency graph, and that's game over. No question it is a mess, but we're here now, JPMS isn't going away, and so the attic repo / waiting patiently are the best plans I have at this time. I'm coordinating this effort here if you want to follow or contribute or request libraries. |
(It's not all bad btw. Guava couldn't ship JPMS for the longest time because it also has upstream dependencies that need module descriptors. Luckily, Error Prone and j2objc have shipped support, so once Guava follows, it should unblock a lot of dependency graphs for a lot of people.) |
@sgammon so what I think we need here (and I'm just guessing you might be more primed to provide - or at least would have an opinion on) is a more robust way for projects to evaluate their supply chains and apply downward pressure on libraries. What I produced above does not seem to be good enough for spring's purposes. I'm under no illusions this will go quickly but starting in earnest 10 years after modules were added in is...well better than 20. |
yeah, I was mostly just hoping to see the version that had been executed updated to 3.3.0 so we could see if there was progress with any of the major versions you did list, since new major/minor would have been updated. I figure that's an easy change for you. I'm not needing perfection. Ya'll are doing good work. It's a shame that 10 years later that we don't have automatic-modules everywhere, or that it has to result in ... arguments ... with authors because they don't use JPMS, and people aren't clamoring. I wonder how many don't ask because they hit a library that doesn't have any support and so they simply stop. Saddest thing here is the number of spring ... platform? ... libraries that don't even have automatic modules |
sorry this is only indirectly related to this, but some people might be interested in this ongoings spring-projects/spring-boot#41203 (comment) where andy doesn't think that spring boot has the responsibility to respect jpms module info as a general policy. note: I'm still trying to figure out why this jakarta module is defined in contrast to it's pom, that's my next step. |
What is the plan for spring-jcl? It conflicts with commons-logging which has an |
Disclaimer: This approach is not to be used as an excuse not to do the proper modularization of a wider ecosystem. It's merely a pragmatic choice I made to keep all parts working together while leveraging benefits of "jigsaw only" language feature. For people that want to leverage sealed hierarchy benefits while keeping parts of the hierarchy in different packages I used the following https://stackoverflow.com/a/78792366/607767. |
If this issue is solved, would it make it possible to use Module Import Declarations with Spring as per JEP 494? |
yes, but I think it should already work to some extent. You're going to have to go solve all of the downstream dependencies first. I think there are some unfixed surprises you'll find in the spring stack too. It's not clear to me from the JEP how automatic modules come into play though, Spring (I think spring AI is the only that doesn't, although I never confirmed that all of spring cloud was fixed) already has that. I'd assume that like module-info that |
Juergen Hoeller opened SPR-13501 and commented
JDK 9's Jigsaw initiative aims to allow for module metadata (
module-info.java
) that can be added to framework and library jars while still keeping them compatible with JDK 8. Let's do this for Spring Framework 5.0's modules as far as feasible. However, we might not be able to express our optional dependency arrangement that way, in which case we might have to resort to an "automatic modules" approach for the more modest purposes of #18289.Issue Links:
1 votes, 12 watchers
The text was updated successfully, but these errors were encountered: