Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [servlet-dev] Spec section 4.2 - what does it mean?

Hi,

I recently dusted off a "Java Web Server" book (one of the earliest of the earliest Servlet containers I think, see https://www.amazon.com/Core-Java-Server-Chris-Taylor/dp/0130805599), and it indeed described how you had to copy your Myservlet.class to a folder called /servlets.

Servlets were seen like CGI-scripts initially I guess ;)

Kind regards,
Arjan



On Mon, Jul 27, 2020 at 6:53 PM Scott Marlow <smarlow@xxxxxxxxxx> wrote:


On 7/18/20 4:13 PM, Mark Thomas wrote:
> Hi all,
>
> Section 4.2 has the following text:
>
> <quote>
> Servlets in a container that were not deployed as part of a web
> application are implicitly part of a “default” web application and have
> a default `ServletContext`. In a distributed container, the default
> `ServletContext` is non-distributable and must only exist in one JVM.
> </quote>
>
> I can honestly say I have no idea what this is referring to. Is it a
> full Jakarta EE server issue? It doesn't seem to make any sense for
> 'just' a Servlet container.
>
> Can anyone shed any light?

 From what I recall "distributed container" is referring to EE server
clustering, at least that is what I (and others that I worked with on an
earlier EE server) thought it meant some years ago but as others point
out, how clustering works with EE has never really been defined.

Scott

>
> Mark
> _______________________________________________
> servlet-dev mailing list
> servlet-dev@xxxxxxxxxxx
> To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/servlet-dev
>

_______________________________________________
servlet-dev mailing list
servlet-dev@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/servlet-dev

Back to the top