You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
705 B
23 lines
705 B
package com.teaching.backend.config; |
|
|
|
import org.springframework.core.io.FileSystemResource; |
|
import org.springframework.core.io.Resource; |
|
import org.springframework.stereotype.Component; |
|
import org.springframework.web.servlet.resource.ResourceHttpRequestHandler; |
|
|
|
import javax.servlet.http.HttpServletRequest; |
|
|
|
/** |
|
* @author longge93 |
|
*/ |
|
@Component |
|
public class NonStaticResourceHttpRequestHandler extends ResourceHttpRequestHandler { |
|
|
|
public final static String ATTR_FILE = "NON-STATIC-FILE"; |
|
|
|
@Override |
|
protected Resource getResource(HttpServletRequest request) { |
|
String filePath = (String) request.getAttribute(ATTR_FILE); |
|
return new FileSystemResource(filePath); |
|
} |
|
}
|
|
|