What\'s wrong with this application. I thought the mix of classpath jars and module jars are valid. For all jars not having an explicit module-info become an automatic modul
finally, I got it... my module-info have to look like this:
module test {
requires java.sql; // my real problem solved with this
requires spring.boot.autoconfigure;
requires spring.boot;
exports com.foo.test; // subsequent error 1: beeing accessible for some spring modules
opens com.foo.test to spring.core; // subsequent error 2: beeing accessible for spring.core in a deep reflection way
}
Can someone explain why I have to requires java.sql; inside my own module when I don't use it?