How to add Object in using model.addAttributes in Spring MVC

后端 未结 4 655
醉酒成梦
醉酒成梦 2021-02-06 16:56

I\'m trying to retrieve the user information from DB and display in the front end (JSP) using Spring MVC.

Inside the controller, currently I\'m adding the following cod

4条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-02-06 17:03

    Don't forget the JSP option isELIgnored="false" as below:

    <%@ page language="java" contentType="text/html; charset=ISO-8859-1" isELIgnored="false"
    pageEncoding="ISO-8859-1"%>
    

提交回复
热议问题