Reputation: 2678
what does context mean with respect to a web-container / a web application ?
what does Context cont = new InitialContext()
initialize ?
Upvotes: -2
Views: 349
Reputation: 7365
what does context mean with respect to a web-container / a webapplication ?
Usually a context will specify object mappings that are specific to your environment -- You may have a production context
refer to a different jdbc configuration than a test context
what does Context cont = new InitialContext() initialize?
This will initialize an empty environment
Upvotes: 2