Example usage for org.springframework.web.servlet.mvc LastModified interface-usage

List of usage examples for org.springframework.web.servlet.mvc LastModified interface-usage

Introduction

In this page you can find the example usage for org.springframework.web.servlet.mvc LastModified interface-usage.

Usage

From source file org.openmrs.web.controller.PseudoStaticContentController.java

/**
 * This controller basically passes requests straight through to their views. When interpretJstl is
 * enabled, ".withjstl" is appended to the view name. (This allows us to use jstl (such as the
 * spring:message tag) in some javascript files.) <br>
 * If you specify any 'rewrites' then the specified paths are remapped, e.g:<br>
 * /scripts/jquery/jquery-1.3.2.min.js -&gt; /scripts/jquery/jquery.min.js <br>

From source file net.sourceforge.subsonic.controller.AvatarController.java

/**
 * Controller which produces avatar images.
 *
 * @author Sindre Mehus
 */
public class AvatarController implements Controller, LastModified {

From source file gallery.web.controller.wallpaper.WallpaperResizeController.java

/**
 *
 * @author demchuck.dima@gmail.com
 */
//@RequestMapping("/wallpaper")
@Controller(value = "wallpaperResizeController")

From source file com.haulmont.cuba.web.controllers.StaticContentController.java

@Controller
@RequestMapping(value = "/static/**")
public class StaticContentController implements LastModified {

    public interface LookupResult {
        void respondGet(HttpServletRequest req, HttpServletResponse resp) throws IOException;

From source file net.sourceforge.subsonic.controller.LeftController.java

/**
 * Controller for the left index frame.
 *
 * @author Sindre Mehus
 */
public class LeftController extends ParameterizableViewController implements LastModified {

From source file org.springframework.web.servlet.mvc.multiaction.MultiActionController.java

/**
 * {@link org.springframework.web.servlet.mvc.Controller Controller}
 * implementation that allows multiple request types to be handled by the same
 * class. Subclasses of this class can handle several different types of
 * request with methods of the form
 *

From source file org.madsonic.controller.CoverArtControllerEx.java

/**
 * Controller which produces cover art images.
 *
 * @author Sindre Mehus
 */
public class CoverArtControllerEx implements Controller, LastModified {

From source file org.madsonic.controller.CoverArtController.java

/**
 * Controller which produces cover art images.
 *
 * @author Sindre Mehus
 */
public class CoverArtController implements Controller, LastModified {

From source file net.sourceforge.subsonic.controller.CoverArtControllerEx.java

/**
 * Controller which produces cover art images.
 *
 * @author Sindre Mehus
 */
public class CoverArtControllerEx implements Controller, LastModified {

From source file net.sourceforge.subsonic.controller.CoverArtController.java

    public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response) throws Exception {
        File file = getImageFile(request);
        Integer size = ServletRequestUtils.getIntParameter(request, "size");

        // Check access.
        if (file != null && !securityService.isReadAllowed(file)) {