Spring MVC中ajax GET请求的内部服务器错误

时间:2016-11-15 23:52:55

标签: ajax spring hibernate spring-mvc

大家好我刚接触MVC,所以我对框架一无所知。我想要做的就是在我的视图中刷新一个div,其中的项目是通过hibernate查询过滤的,该查询可以正确打印到标准输出。

出于某种原因,我不知道我得到500;我通过ajax尝试获取请求时出现内部服务器错误。 我更改了控制器中的返回类型,我最初的想法是使用带有可选参数的默认索引控制器。

查看:

<div id="itemListContainer">
                <c:if test="${!empty items}">
                    <c:forEach items="${items}" var="item">
                        <c:url value="/showImage.htm" var="url">
                            <c:param name="id" value="${item.id}" />
                        </c:url>
                        <div id="${item.id}" class="col-lg-2 col-md-3 col-xs-6 thumb">
                            <img class="img-responsive" src="${url}" alt="${item.name}">
                        </div>
                        <input id="name_${item.id}" type="hidden" value="${item.name}">
                        <input id="name_${item.id}" type="hidden" value="${item.review}">
                    </c:forEach>
                </c:if>
                <c:if test="${!empty itemList}">
                    <h1>Nothing found</h1>
                </c:if>
            </div>

JS档案

function filterItems(value) {

    $("#itemListContainer").empty();

        $.ajax({
            method: "GET",
            //dataType: "json",
            url: "filterItems.htm",
            data: {
                type: value
            },                
            success: function (data) {
                if (data) { 
                    $("#itemListContainer").html(data);                    
                } else {
                    console.log(xhr.responseText);
                    alert("failure");
                }    
            }, 
            error: function(XMLHttpRequest, textStatus, errorThrown) { 
                alert("Status: " + textStatus); alert("Error: " + errorThrown); 
            }     
        });
}

控制器:

@RequestMapping(value = "/filterItems", method = RequestMethod.GET)
    public @ResponseBody List<Item> filterItems(@RequestParam(value = "type", required = false) String type) {
        List<Item> items = new ArrayList<Item>();
        try {
            items = itemDao.getItems(type);

        } catch (Exception e) {
            e.printStackTrace();
        }        
        return items;
    }

任何帮助将不胜感激。在此先感谢!!

1 个答案:

答案 0 :(得分:0)

再一次,当我遇到hibernate的小经验时,错误与Javascript,控制器o DAO无关,但与实体映射有关。

我的项目实体与用户实体有关联,并且必须在关联的延迟加载和急切加载之间进行指定。在我的情况下,它通过将lazy="true"添加到我的xml文件来解决。