PavelTurk

Results 64 comments of PavelTurk

It is almost 4 years since this issue was opened. That's really funny because rowspan/colspan are so natural features of any table (I am sure) in any UI library. I...

Default ModuleFinder doesn't allow to add .war files to ModuleLayer. See my issue [here](https://bugs.openjdk.java.net/browse/JDK-8203330) . Alan Bateman suggested to implement custom ModuleFinder and I implemented it (I took a lot...

Do I understand right - jetty loads classes from war file itself? I am asking as now I am testing my solution and it seems that when I load war...

@sbordet Layers in JPMS allow dynamically create subsytems of the application where every subsytem has its own modules and every subsytem is isolated from others. So we can consider every...

@sbordet As I remember developers of Jigsaw project worked about 10 years. 10 years! What for? Modularization? But why do we need it if we always can create N jars?...

@panga left and I am alone :). The main problem here is Servlet specs is older and there is nothing about JPMS. So we are at the intersection of technologies....

@sbordet At current moment I can create JPMS layer and deploy there .war as automatic module. But jetty reads classes not from that automatic module, but from .war file. We...

> We need to know the details. How do you do this? How do you make the module system look for the `Automatic-Module-Name` inside a .war? And in future, how...

Let's suppose we have two modules - jetty module and `our` module. Firstly all instances of server will be created in `our` module and secondly we can create N instances...

Thanks to @lukehutch . Now we can scan separate ModuleLayer with ClassGraph. See [here](https://github.com/jetty-project/annotation-discovery/issues/4#issuecomment-424153042). Now we have all tools to implement this feature.