How project based common classes needs to be configured with spring-modulith #82
-
What is common practice keeping some project based common classes such interceptors, filters, message converters or some utility classes which might be used by all modules in same monolith project structure while using spring-modulith? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
We need something like this as well. |
Beta Was this translation helpful? Give feedback.
-
The same question. Common module definitely contains sub-module and all of them must be shared. |
Beta Was this translation helpful? Give feedback.
-
Most projects I know of simply declare a |
Beta Was this translation helpful? Give feedback.
Most projects I know of simply declare a
core
module and register that as a shared module via the@Modulithic
annotation. See an example of that here.