最近在写毕业论文用的是ssm框架,发现el表达式的值获取不了,看了网上的一些方法发现加了<%@ page isELIgnored="false" %>也没有用。
经过不断地摸索才找到问题的解决方法:
1.将Controller类里面的方法的@SessionAttributes("currentId")注解的括号中的名字和model.addAttribute("currentId", userresult.getUserid()); 名字一样 。
el表达式:${currentId}
这样就可以了。