Difference between server library and class library in Netbeans?

What is the difference between a server library and a class library in Netbeans?

+3
source share
1 answer

A server library refers to a library of applications or web applications, such as servlet-api.jar in Tomcat or jboss.all.jar in JBoss.

while

a ClassLibrary refers to a library outside the standard scope of a server library, for example log4j.jar. The class library is also a valid .jar class archive written by someone like you.

+1
source

Source: https://habr.com/ru/post/1760961/


All Articles