I am running the same servlet application in both Apache Tomcat and GlassFish servers. I wanted to see the ServletConfig and ServletContext implementation class names. Surprisingly, I found that GlassFish is also using from Apache Tomcat’s catalina classes. Is my observation correct? If yes, why isn’t GlassFish using its own servlet implementation classes? [ Answer According to this FAQ entry
Tag: glassfish
Glassfish 5.1 missing modules from previous versions
We have an application running on Glassfish 5.0.1 and before that 4.1.1 versions. Recently server is updated to Glassfish 5.1.0 and our application can not be compiled due to the missing of javax….
org.glassfish.jersey.internal.RuntimeDelegateImpl NOT FOUND
I am using jersey for my project and tring to parse a URI from a string. UriBuilder.fromUri(“http://localhost:8000”).build(); The code is simple, but I get a error below java.lang….