Detailed description of the seven new features and features of Tomcat 7 (1)

Source: Internet
Author: User
Tags xml parser

Http://developer.51cto.com/art/201009/228537.htm

Http://tomcat.apache.org/tomcat-7.0-doc/index.html

Apache released the first version of Tomcat 7 has been released for some time, and Tomcat 7 introduces many new features and enhancements to existing features. Many articles list the new features of Tomcat 7, but most do not explain them in detail, or point out their shortcomings, or provide code examples. This article will clearly describe and comment on the seven most salient features and new features in Tomcat 7, rather than just listing new features. This article also provides examples of code to make it easier for you to get a better understanding of it.

This article is divided into two parts, namely "Tomcat 7 new features" and "Tomcat 7 enhanced features".

New features of Tomcat 7

1 use random numbers to prevent cross-site scripting attacks.

2 changed the mechanism of Jessionid in security authentication to prevent the session attack.

3 Detection and prevention of memory leaks

4 Use aliases outside the war file to store static content.

Enhancements to Tomcat 7

5 to Servlet 3.0,jsp 2.2 and Jsp-el 2. 2 of support

6 easier to embed Tomcat into the app, like JBoss

7 Asynchronous logging

According to the manager of the Mark Thomas,tomcat 7 Committee, the most notable three features of Tomcat 7 are servlet 3.0, memory leak detection and enhanced security features.

The Tomcat 7 Example program contains the project files of Eclipse and the build files of ant to facilitate the construction of the war file. One of the Eclipse engineering files has an example code that describes some of the new features of Tomcat 7.

Let's start with the introduction.

New features of Tomcat 7

One, using random numbers to prevent cross-site request forgery attacks

Wikipedia defines a cross site request forgery attack (FORGERY,CSRF) as: "A malicious attack that affects web applications. CSRF allows users to be forced to execute malicious code when they enter a trustworthy Web page.

The classic way to prevent CSRF attacks is to use random numbers, defined in Wikipedia as "using random or pseudo-random numbers embedded in the authentication protocol to ensure that the old cannot be exploited in later replay attacks." ”

There is a servlet filter in Tomcat 7 that stores random numbers in a seesion session after each request is processed by the user. This random number must be used as a parameter in each request. The servlet filter then checks whether the random number in the request is the same as the random number stored in the user session. If they are the same, the request is judged from the specified Web site. If they are different, the request is considered to be issued from another site and will be rejected.

This servlet filter is very simple, and here is the excerpt from the Tomcat source code Csrfpreventionfilter document:

  1. public class Csrfpreventionfilter extends Filterbase {
  2. public void DoFilter (ServletRequest request, servletresponse response,
  3. Filterchain chain) throws IOException, Servletexception {
  4. String previousnonce = req.getparameter (constants.csrf_nonce_request_param);
  5. String expectednonce = (string) req.getsession (True). getattribute (Constants.csrf_nonce_session_attr_name);
  6. if (expectednonce! = null &&!expectednonce.equals (previousnonce)) {
  7. Res.senderror (Httpservletresponse.sc_forbidden);
  8. Return
  9. }
  10. String newnonce = generatenonce ();
  11. Req.getsession (True). SetAttribute (Constants.csrf_nonce_session_attr_name, newnonce);

So each URL address has a random number extracted from the user session, and the following is an example of the JSTL used:

In the past, Jstl constructs a link in this way:

  1. < c:url var="url" value="/show" >
  2. < c:param name="id" value="0"/ >
  3. </c:url >
  4. < a href="${show}" >show< /a >

And now you can do this:

  1. < c:url var="url" value="/show" >
  2. < c:param name="id" value="0"/ >
  3. < c:param name="Org.apache.catalina.filters.CSRF_NONCE" value= "${ Session.org.apache.catalina.filters.CSRF_NONCE} "/ >
  4. </c:url >

Specific examples can be found in the Tomcat 7 example of the demo, this filter can be configured in Web. XML, after configuration, all access such as:http://localhost:8080/tomcat7demo/csrf/ Must be taken with parameters and 403 forbidden errors will occur without parameters.

Of course, the disadvantage of this approach is that all links must carry this random number.

Second, change the security authentication in the Jessionid mechanism, to prevent the session attack

Session hijacking attacks are usually the following:

1 A malicious attacker accesses a webpage first, because the cookie is stored in the browser as a jsession ID, and even if the attacker does not log in, he can forge an address with a jsession ID and send it to the victim, such as http:// Example.com/login? Jessionid=qwerty

2 Victims Click this link with Jsessionid, which prompts you to enter the verification information and then log into the system.

3 The attacker now uses the Jsessionid link to log into the system as the victim's identity.

It is easy for an attacker to add jsessionid to the URL and send it through a malicious form, and for a more detailed description of the session hijacking attack, refer to the Acros Security Organization's white paper "Session fixation Vulnerability in web-based applications ".

The Tomcat 7 solution to this is a patch that changed the Jsessionid after validation. This patch is primarily used in Tomcat 7, but is also available in Tomcat 5 and 6, but only slightly different.

According to Mark Thomas, after applying the patch for Tomcat 7:

Tomcat security is no longer vulnerable by default because the session has changed after validation

If the user changes the default settings (for example, the application cannot handle the changed session ID), the risk is minimized because in servlet 3, you can disable session tracking in the URL.

In Tomcat 5 and Tomcat 6, after applying a patch:

Can prevent a session hijacking attack because it allows Tomcat to change the session ID after verification.

If the application cannot handle the changed session ID, you can reduce the risk by writing a custom filter to check the Request.isrequestedsessionidfromurl () and its returned results.

All of these changes were made by tomcat behind the scenes, and developers didn't have to bother.

Iii. Detection and prevention of memory leaks

Developers often encounter Pemgen errors when deploying their written programs to production environments: OutOfMemoryError. This is caused by a memory leak. Usually the developer solves the problem by increasing the size of the PermGen memory or restarting Tomcat.

Tomcat 7 contains a new feature that solves some of the PermGen memory leaks by removing the reference objects that cannot be garbage collected. This feature is very handy for programmers deploying applications in their development environment, as programmers can deploy new war files in the development environment in order to save time by not restarting Tomcat. In a production environment, the best advice is to stop Tomcat, then clear the directory file under work and redeploy the app.

Of course, memory leak detection and prevention of this feature is not perfect now, or there are situations where Tomcat cannot detect memory leaks and fixes, so the best way for a production environment is to stop Tomcat, then clear the directory files under work and redeploy the app.

The Mark Thomas Parsing application or library program will trigger a memory leak in the following scenarios:

The JDBC Driver registration

Some log frames

objects are saved in Threadlocals, but they are not deleted

Thread was started but not stopped

Where there are memory leaks in the Java API include:

1. Using the Javax.imageio API (Google WEB Toolkit will be used)

2. Using Java.beans.Introspector.flushCaches ()

3. Using the XML parser

4. Using RMI Remote method calls

5. Reading resources from the Jar file

Iv. using aliases outside of the war file to store static content

Web applications require static resource files such as Css,javascript and video files, image files, and so on. They are usually packaged in a war file, which increases the size of the war file and causes a lot of repetitive loading of static resources. A good solution is to use the Apache HTTP server to manage these static file resources, here is an Apache httpd.conf file configuration excerpt:

    1. < Directory "/home/avneet/temp/static" >
    2. Order Allow,deny
    3. Allow from all
    4. </directory >
    5. Alias/static "/home/avneet/temp/static"

The above settings allow access to the resources placed under/home/avneet/temp/static when accessing http://localhost/static .

Allows Tomcat to parse the absolute path by using the new aliases property, indicating the location of the static file resource, either by using Classloader.getresourceasstream ('/static/... ') or by embedding it in the link. The following is an example of a configuration in context.xml:

    1. < XML version= "1.0" encoding= "UTF-8" ? >
    2. < Context path="/tomcat7demo" aliases="/static=/home/avneet/temp/static" >
    3. </context >

Suppose /home/avneet/temp/static This folder has a picture bg.png, if the war file is deployed in Tomcat7demo name, you can access this image in the following three ways

1 Direct access:http://localhost:8080/tomcat7demo/static/bg.png

2 Access in HTML links:

    1. < img src="/tomcat7demo/static/bg.png"/ >

3 Access via Java code:

    1. Bytearrayinputstream Bais = (bytearrayinputstream) getservletcontext (). getResourceAsStream ("/static/bg.png");

The advantage of using aliases is that it can be used in place of Apache's httpd.conf settings and can be accessed within the scope of the servlet container and does not require Apache.

V. Support for servlet 3.0,jsp 2.2 and Jsp-el 2.2

The enhanced features of Servlet 3 are:

Annotations annotations can be used in Pojo or filter filters (no more setting in Web. xml)

The Web. XML chunking can be managed. That is, users can write multiple XML files and eventually assemble them in web. NET, which greatly reduces the complexity of Web. XML to enhance readability. For example, each of Struts.jar and Spring-mvc.jar can have a web-fragment.xml. Developers no longer need to configure them in Web. XML, the jar files in Web-fragment.xml are loaded automatically, and Struts/spring-mvc Servlets and filters are automatically assembled.

Asynchronous processing of Web requests----This feature is already in Tomcat 6 and is now normalized in Tomcat 7 with the servlet 3 standard, enabling Web applications that use asynchronous I/O to be ported to different web containers. Asynchronous processing uses non-blocking I/O, and each HTTP connection does not require a corresponding thread. Fewer threads can provide services for more connections. This is useful for scenarios that require long-time calculations to return results, such as generating reports, Web Servce calls, and so on.

Security Enhancements---Servlet 3.0 now uses SSL to enhance the tracking of session sessions instead of the original cookie and URL rewriting.

Six, easier to embed Tomcat into the application to go

Tomcat 7 can now be embedded in the application and can be set and started dynamically through the program. Many configurations, like in Catalina_home/conf/server.xml, can now be set dynamically with the program. Before Tomcat 7, Tomcat 6 provided an embedded class that would be easy to configure with Tomcat. In Tomcat 7, however, this class has been deprecated. This new Tomcat 7 class, uses several default configuration elements, and provides an easier and simpler way to embed Tomcat.

Here are some of the related properties and configurations in Catalina_home/conf/server.xml:

  1. < Server >
  2. < Service >
  3. < Connector port= "8080 >
  4. < Engine >
  5. < Host appbase="/home/avneet/work/tomcat7demo/dist"/ >
  6. </engine >
  7. </connector >
  8. </service >
  9. </server >

We can use the program to make dynamic settings:

    1. final string catalina_home = < Span class= "Attribute-value" > "/home/avneet/work/temp/tomcat7demo/";  
    2. tomcat tomcat =  new tomcat ();  
    3. tomcat.setbasedir ( CATALINA_HOME );  
    4. Tomcat.setport ( 8080 );  
    5. tomcat.addwebapp ("/tomcat7demo", catalina_home +  "/webapps/tomcat7demo.war");  
    6. Tomcat.start ();  
    7. system.out.println ("Started tomcat");  
    8. Tomcat.getserver (). await ();  //keeps tomcat running until it is shut  down  
    9. //webapp tomcat7demo accessible at http://localhost : 8080/tomcat7demo/ 
    10.  

Seven, asynchronous log records

Tomcat 7 now includes an asynchronous log recorder (Asyncfilehandler). Asyncfilehandler inherits the Filehandler class and can replace Filehandler. With Asyncfilehandler, you only need to replace the Filehandler with Asyncfilehandler in Catalina_home/conf/logging.properties. Note that asynchronous logs cannot work with LOG4.

When a log is sent to Asyncfilehandler, the log is added to the queue (Java.util.concurrent.LinkedBlockingDeque) and the information of the method call is returned immediately without waiting for I/O to write to disk. When the ClassLoader loads Asyncfilehandler, a separate thread is started, and the thread reads the log information from the queue and writes it to the disk

The benefit of this approach is that logging requests and processing do not appear to be slow if I/O is slow (for example, if the log is to be kept on a remote device).

Asyncfilehandler uses the principle of relationship between producers and consumers to store log information in a queue. The queue default size is 10000. To prevent queue overflow, the default is to discard the last information. The default queue size and overflow settings can be set through the startup parameters.

Sample Program for Tomcat 7

The Tomcat 7 example has two Servlets, one that demonstrates how to use random numbers to prevent CSRF attacks, and another that describes the use of aliases. Update Web/meta-inf/context.xml and point out that the absolute path of the picture will run smoothly.

Run build.xml with Ant to deploy them to Tomcat 7, accessed using the following two addresses:

http://localhost:8080/tomcat7demo/csrf/

http://localhost:8080/tomcat7demo/alias/

Detailed description of the seven new features and features of Tomcat 7 (1)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.