[GitHub] [tomcat] markt-asf commented on pull request #298: Fix BZ 64514 - classes missing from bootstrap.jar

2020-06-15 Thread GitBox


markt-asf commented on pull request #298:
URL: https://github.com/apache/tomcat/pull/298#issuecomment-644308328


   Fixed via back-port (cherry-pick) of 10.0.x fix



This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[GitHub] [tomcat] markt-asf commented on pull request #298: Fix BZ 64514 - classes missing from bootstrap.jar

2020-06-11 Thread GitBox


markt-asf commented on pull request #298:
URL: https://github.com/apache/tomcat/pull/298#issuecomment-642864883


   There are trade-offs here.
   Modules require "clean packages" with all code from one package in one JAR.
   Bootstrap uses utility code from elsewhere in the Tomcat code base.
   We want to keep the bootstrap JAR small.
   We don't want to duplicate code.
   
   Hmm...
   
   This feels more like a discussion for the dev list. I'll move this 
discussion there.
   



This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[GitHub] [tomcat] markt-asf commented on pull request #298: Fix BZ 64514 - classes missing from bootstrap.jar

2020-06-11 Thread GitBox


markt-asf commented on pull request #298:
URL: https://github.com/apache/tomcat/pull/298#issuecomment-642679912


   I don't think this is correct. Only those classes required during the 
bootstrap process need to be in the bootstrap JAR. If this was not correct, I'd 
expect to see reports of ClassNotFoundException on Tomcat start and there 
aren't any.
   
   Those classes may well have additional dependencies that are not used during 
the bootstrap process. Those dependencies do not belong in bootstrap.jar.
   
   Taking ExceptionUtils as an example, there is an explicit workaround in 
Bootstrap to account for that class not being accessible.
   
   For Globals, most (all?) of those will be constants which will be compiled 
into the class meaning there should be no runtime dependency on Globals.
   
   And so on.
   
   Unless you can provide a configuration that triggers a 
ClassNotFoundException on Tomcat start, I'm minded to resolve this as invalid.



This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org