无法在Spring MVC中重定向(使用“:redirect /”)

时间:2018-06-21 11:05:24

标签: spring-mvc spring-boot redirect

我正在尝试发布图像。 我有一张要上传的表格(以及包含所有上传图片的表格)

<!DOCTYPE html>
<html lang="en" xmlns:th="https://thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <link rel="stylesheet" href="/main.css">
    <title>SpringImageApp</title>
</head>
<body>
    <div>
        <h3 th:if="${#vars['flash.message']}" th:text="${#vars['flash-message']}" class="flash"></h3>
        <h3 th:text="${page.number + 1} + ' of ' + ${page.totalPages}" />
            <table>
                <thead>
                <th>Id</th><th>Name</th><th>Image</th>
                </thead>
                <body>
                <tr th:each="image : ${page.content}">
                    <td th:text="${image.id}"/>
                    <td th:text="${image.name}"/>
                    <td th:text="@{'/images/' + ${image.name} + ' /raw '}"/>
                </tr>
                </body>
            </table>
            <form method="post" enctype="multipart/form-data" action="/images">
                <p><input type="file" name="file"></p>
                <p><input type="submit" value="Upload"></p>

            </form>
    </div>
</body>
</html> 

下面是我的控制器文件

private static final String BASE_PATH="images"
@RequestMapping(method = RequestMethod.POST,value = BASE_PATH )
    @ResponseBody
    public String createFile(@RequestParam("file") MultipartFile file, RedirectAttributes redirectAttributes){

        try{
            imageService.createImage(file);
            redirectAttributes.addFlashAttribute("flash.message","Successfully uploaded" + file.getOriginalFilename());

        }catch(IOException e){

            redirectAttributes.addFlashAttribute("flash.message","Failure  uploaded" + file.getOriginalFilename());


        }
        return "redirect:/";

    } 

一切正常,直到我上传图片。它重定向到URL localhost:8080/images,显示字符串redirect:/而不是根目录。我进行了另一个类似的应用程序(没有thymeleaf模板限制),并且运行良好。 我的控制器,服务或模板引擎有问题吗?

2 个答案:

答案 0 :(得分:0)

您需要从方法中删除@ResponseBody注释-这告诉Spring响应将被序列化为JSON(更多详细信息:http://www.baeldung.com/spring-request-response-body#requestbody

如果删除该注释,似乎应该可以正常工作。

答案 1 :(得分:0)

您需要从类中删除@RestController,并且需要使用@Controller而不是@RestController。 并且您需要从类方法中删除@ResponseBody。因为@RestController和@ResponseBody将用于将响应序列化为JSON。