Package org.olat.core.dispatcher.mapper

Examples of org.olat.core.dispatcher.mapper.MapperRegistry.execute()


         // OLAT-5368: an intermediate commit is necessary here to close open transactions which could otherwise
         // run into the 2 min timeout and cause errors. The code does a return after serving the file anyway
         // and would do a commit right there as well - so this doesn't break the transaction semantics.
         DBFactory.getInstance(false).intermediateCommit();
        
        mreg.execute(request, response, subtractContextPath(request, pathInfo));
        return;
      } else if (pathInfo.startsWith(PATH_GLOBAL_MAPPED)) {
        // Dynamic files that can be cached by browsers based on last modified
        // date, but are dynamically created by the application
        gmr.execute(request, response, subtractContextPath(request, pathInfo));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.