Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Tomcat Wiki" for change 
notification.

The "HowTo/FasterStartUp" page has been changed by KonstantinKolinko:
https://wiki.apache.org/tomcat/HowTo/FasterStartUp?action=diff&rev1=17&rev2=18

Comment:
Note that empty absolute-ordering does not affect scanning of WEB-INF/classes

  
  The `<absolute-ordering>` element specifies which web fragment JARs 
(according to the names in their `WEB-INF/web-fragment.xml` files) have to be 
scanned for SCIs, fragments and annotations. An empty `<absolute-ordering/>` 
element configures that none are to be scanned.
  
+ Note: in Tomcat 8 the container-provided SCIs are always discovered, 
regardless of `absolute-ordering`. It does not prevent scanning for 
annotations, but the list of JARs to be scanned will be empty, and thus it will 
complete quickly. The classes in `WEB-INF/classes` are always scanned 
regardless of `absolute-ordering`.
- Note: in Tomcat 8 the container-provided SCIs are always discovered, 
regardless of `absolute-ordering`.
- 
- An example of a SCI is in the WebSocket API implementation jar 
(`tomcat-websocket.jar`, `tomcat7-websocket.jar`) which is included with Tomcat 
7 starting with 7.0.47.
+ An example of a container-provided SCI is in the WebSocket API implementation 
jar (`tomcat-websocket.jar`, `tomcat7-websocket.jar`) which is included with 
Tomcat 7 starting with 7.0.47. If you do not need support for WebSockets, you 
may remove it.
  
  Scanning for web application resources and TLD scanning are not affected by 
these options.
  

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to