Added controller for returning media in response body
This commit is contained in:
parent
0815d31ea4
commit
4b18d13857
@ -109,7 +109,13 @@
|
|||||||
<artifactId>jackson-databind</artifactId>
|
<artifactId>jackson-databind</artifactId>
|
||||||
<version>2.7.2</version>
|
<version>2.7.2</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- IO -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>commons-io</groupId>
|
||||||
|
<artifactId>commons-io</artifactId>
|
||||||
|
<version>2.2</version>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
@ -0,0 +1,54 @@
|
|||||||
|
package com.baeldung.spring.controller;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStream;
|
||||||
|
|
||||||
|
import javax.servlet.ServletContext;
|
||||||
|
|
||||||
|
import org.apache.commons.io.IOUtils;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.core.io.DefaultResourceLoader;
|
||||||
|
import org.springframework.core.io.Resource;
|
||||||
|
import org.springframework.core.io.ResourceLoader;
|
||||||
|
import org.springframework.http.HttpHeaders;
|
||||||
|
import org.springframework.http.HttpStatus;
|
||||||
|
import org.springframework.http.MediaType;
|
||||||
|
import org.springframework.http.ResponseEntity;
|
||||||
|
import org.springframework.stereotype.Controller;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMethod;
|
||||||
|
import org.springframework.web.bind.annotation.ResponseBody;
|
||||||
|
import org.springframework.web.context.support.ServletContextResourceLoader;
|
||||||
|
|
||||||
|
@Controller
|
||||||
|
public class ImageController {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
ServletContext servletContext;
|
||||||
|
|
||||||
|
@RequestMapping(value = "/image-response-entity", method = RequestMethod.GET)
|
||||||
|
public ResponseEntity<byte[]> getImageAsREsponseEntity() throws IOException {
|
||||||
|
final InputStream in = servletContext.getResourceAsStream("/WEB-INF/images/image-example.jpg");
|
||||||
|
byte[] media = IOUtils.toByteArray(in);
|
||||||
|
|
||||||
|
final HttpHeaders headers = new HttpHeaders();
|
||||||
|
headers.setContentType(MediaType.IMAGE_JPEG);
|
||||||
|
|
||||||
|
return new ResponseEntity<byte[]>(media, headers, HttpStatus.OK);
|
||||||
|
}
|
||||||
|
|
||||||
|
@RequestMapping(value = "/image-byte-array", method = RequestMethod.GET, produces = MediaType.IMAGE_JPEG_VALUE)
|
||||||
|
public @ResponseBody byte[] getImageAsByteArray() throws IOException {
|
||||||
|
final InputStream in = servletContext.getResourceAsStream("/WEB-INF/images/image-example.jpg");
|
||||||
|
return IOUtils.toByteArray(in);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ResponseBody
|
||||||
|
@RequestMapping(value = "/image-resource", method = RequestMethod.GET, produces = MediaType.IMAGE_JPEG_VALUE)
|
||||||
|
public Resource getImageAsResource() {
|
||||||
|
ResourceLoader resourceLoader = new ServletContextResourceLoader(servletContext);
|
||||||
|
return resourceLoader.getResource("/WEB-INF/images/image-example.jpg");
|
||||||
|
}
|
||||||
|
}
|
@ -5,12 +5,23 @@
|
|||||||
http://www.springframework.org/schema/beans
|
http://www.springframework.org/schema/beans
|
||||||
http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
|
http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
|
||||||
http://www.springframework.org/schema/context
|
http://www.springframework.org/schema/context
|
||||||
http://www.springframework.org/schema/context/spring-context-4.2.xsd
|
http://www.springframework.org/schema/context/spring-context-4.2.xsd
|
||||||
http://www.springframework.org/schema/mvc
|
http://www.springframework.org/schema/mvc
|
||||||
http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd"
|
http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd"
|
||||||
>
|
>
|
||||||
|
|
||||||
<mvc:annotation-driven/>
|
<mvc:annotation-driven>
|
||||||
|
<mvc:message-converters>
|
||||||
|
<bean class="org.springframework.http.converter.ByteArrayHttpMessageConverter">
|
||||||
|
<property name="supportedMediaTypes">
|
||||||
|
<list>
|
||||||
|
<value>image/jpeg</value>
|
||||||
|
<value>image/png</value>
|
||||||
|
</list>
|
||||||
|
</property>
|
||||||
|
</bean>
|
||||||
|
</mvc:message-converters>
|
||||||
|
</mvc:annotation-driven>
|
||||||
|
|
||||||
<context:component-scan base-package="com.baeldung.spring.controller"/>
|
<context:component-scan base-package="com.baeldung.spring.controller"/>
|
||||||
|
|
||||||
@ -21,8 +32,7 @@
|
|||||||
|
|
||||||
<mvc:view-controller path="/sample.html" view-name="sample"/>
|
<mvc:view-controller path="/sample.html" view-name="sample"/>
|
||||||
|
|
||||||
<bean class="org.springframework.context.support.ResourceBundleMessageSource" id="messageSource">
|
<bean class="org.springframework.context.support.ResourceBundleMessageSource" id="messageSource">
|
||||||
<property name="basename" value="messages" />
|
<property name="basename" value="messages" />
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
</beans>
|
</beans>
|
||||||
|
BIN
spring-mvc-xml/src/main/webapp/WEB-INF/images/image-example.jpg
Normal file
BIN
spring-mvc-xml/src/main/webapp/WEB-INF/images/image-example.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 101 KiB |
Loading…
x
Reference in New Issue
Block a user