有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java Jsp视图页未在Spring boot中呈现。如何解决?

我试图发出一个ajax请求,向我的spring boot发送一个值。但是,一旦我合并了ajax调用并成功地将值传递给java,它就不会查看jsp页面。我相信问题来自于方法本身,但我不能完全确定。同样,我传递了值,但是每当我使用ModelAndViewModel时,它似乎不会相应地更改页面

JSP:

 <script>
        var chaptersTest = ${ chapters };
        var totalChapters = chaptersTest.length;
        var codeBlock;

        for (var i = 0; i < totalChapters; i++) {

            codeBlock =


                '<div class="col-md-4">' +

                ' <a class="chapter_link" data-link="' + chaptersTest[i] + '" style="text-decoration: none; color: white"><div class="box warning">' +

                '  <h3>' + chaptersTest[i] + '</h3>' +

                '  </div></a></div>';

            $("#chapterArea").append(codeBlock);
        }


        //clicked links

        $('.chapter_link').click(function () {
            console.log("YoUR fUNCtION IS cLICKED");
            doSomething();
        });



        function doSomething() {
            var search2 = {
                "chapter": "riley"
            }

            $.ajax({
                type: "POST",
                contentType: 'application/json; charset=utf-8',
                dataType: 'json',
                url: "/ajax",
                data: JSON.stringify(search2),
                success: function (result) {
                    console.log("It somewhat worked");
                }

            });

        }



    </script>

Java:

@RequestMapping(value = "/ajax", method = RequestMethod.POST)
    public @ResponseBody String sectionView(@RequestBody BEntity benny, HttpServletRequest request) {
        String temp = benny.getChapter();
        ModelAndView secView = new ModelAndView();

        try {
            secView.setViewName("viewsections.jsp");
            //It is not sending the jsp to change the page

        } catch (Exception e) {
            secView.setViewName("error.jsp");

        }


        System.out.println("Test 1");
        return secView;
    }


对象:



public class BEntity {

    private String search; 
    private String chapter;
    private String section; 

    public String getSection() {
        return section; 
    }


    public String getChapter() {
        return chapter; 
    }

    public String getSearch() {
        return search;
    }

    @Override
    public String toString() {
        return "This was searched: " + search;
    } 

共 (1) 个答案

  1. # 1 楼答案

    在控制器中,删除@ResponseBody注释并将返回类型更改为ModelAndView。将ajax代码中的dataType更改为html

    如果未正确配置视图,则在application.properties中,将前缀和后缀设置为:

    spring.mvc.view.prefix: /views/
    spring.mvc.view.suffix: .jsp
    

    春天。mvc。看法prefix是jsp文件所在文件夹的路径

    @RequestMapping(value = "/ajax", method = RequestMethod.POST)
    public ModelAndView sectionView(@RequestBody BEntity benny, HttpServletRequest request) {
        String temp = benny.getChapter();
        ModelAndView secView = new ModelAndView();
        try {
            secView.setViewName("viewsections");
            //It is not sending the jsp to change the page
        } catch (Exception e) {
            secView.setViewName("error");
        }
        System.out.println("Test 1");
        return secView;
    }