java:webxml
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
java:webxml [2011/06/14 13:35] – rlunaro | java:webxml [2022/12/02 21:02] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== The intrinsincs of web.xml ====== | ||
+ | |||
+ | I've messing around searching for someone who explains me clearly the intrinsics | ||
+ | of the configuration of the web.xml file and finally I've found something | ||
+ | in a manual from oracle: | ||
+ | |||
+ | http:// | ||
+ | |||
+ | I attach here for the sake of not loose it: | ||
+ | |||
+ | {{: | ||
+ | |||
+ | And I don't want to loose the opportunity to to comment one thing: the issue of the | ||
+ | context parameters. | ||
+ | |||
+ | ===== What Context Parameters Are ===== | ||
+ | |||
+ | Context Parameters are this: parameters that the application --or a library, also | ||
+ | known these days as **framework**-- can read from the '' | ||
+ | |||
+ | Here is the syntax to define a context parameter: | ||
+ | |||
+ | <code xml> | ||
+ | < | ||
+ | | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | |||
+ | </ | ||
+ | | ||
+ | </ | ||
+ | |||
+ | |||
+ | How can them be read: | ||
+ | |||
+ | <code java> | ||
+ | |||
+ | javax.servlet.ServletContext.getInitParameter() | ||
+ | javax.servlet.ServletContext.getInitParameterNames() | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | |||
+ | |||