Re: javax.servlet vs jakarta.servlet?

2021-12-27 Thread Jason Wee
yeap, also take note libs that depend on the new namespace and taglibs On Tue, Dec 28, 2021 at 8:35 AM Michael B Allen wrote: > > Hello Tomcat Users, > > Does anyone have a sense of how many people are using the jakarta.servlet API? > > I have a product that includes some classes that use

Re: ClassFileTransformer in Tomcat 10 common classloader

2021-12-27 Thread Chew Kok Hoor
Sure Chris, thanks for advice! Have a great day! Regards, Kok Hoor On Tue, Dec 28, 2021 at 8:23 AM Christopher Schultz < ch...@christopherschultz.net> wrote: > Kok Hoor, > > On 12/27/21 19:08, Chew Kok Hoor wrote: > > Thanks for prompt response. We have like maybe 50 webapps, and they

javax.servlet vs jakarta.servlet?

2021-12-27 Thread Michael B Allen
Hello Tomcat Users, Does anyone have a sense of how many people are using the jakarta.servlet API? I have a product that includes some classes that use javax.servlet and I'm trying to figure out how to support people who want to use jakarta.servlet. I plan to install Tomcat 10 momentarily but I

Re: ClassFileTransformer in Tomcat 10 common classloader

2021-12-27 Thread Christopher Schultz
Kok Hoor, On 12/27/21 19:08, Chew Kok Hoor wrote: Thanks for prompt response. We have like maybe 50 webapps, and they are common (except that they have different database connection or maybe some html file changes). Which is why we prefer sharing libraries for ease of deployment and

Re: ClassFileTransformer in Tomcat 10 common classloader

2021-12-27 Thread Chew Kok Hoor
Hi Chris, Thanks for prompt response. We have like maybe 50 webapps, and they are common (except that they have different database connection or maybe some html file changes). Which is why we prefer sharing libraries for ease of deployment and updates. But I do agree, sharing libraries

Re: ClassFileTransformer in Tomcat 10 common classloader

2021-12-27 Thread Christopher Schultz
Kok Hoor, On 12/27/21 18:36, Chew Kok Hoor wrote: Hi, We're using the old javax.servlet namespace for compatibility reasons. Some of our jar files are re-used by different web-apps, therefore we placed them in the common classloader. Is it possible to convert them dynamically,

ClassFileTransformer in Tomcat 10 common classloader

2021-12-27 Thread Chew Kok Hoor
Hi, We're using the old javax.servlet namespace for compatibility reasons. Some of our jar files are re-used by different web-apps, therefore we placed them in the common classloader. Is it possible to convert them dynamically, just like how we do it for servlets in the per app