概述
Spring MVC实现用户登录后显示用户昵称
在开发网站的过程中经常需要用户的登录,登录以后要显示用户的名称,或者是用户的昵称。
我遇到的问题是登录成功后无法显示用户昵称,只显示欢迎语
public String csdl(String cliName,String cliPassword,String cliRealname,HttpServletRequest request,HttpServletResponse response,HttpSession session) throws IOException {
System.out.println(cliName);
System.out.println(cliPassword);
System.out.println(cliRealname);
List<Client> list = clientService.login(cliName, cliPassword);
String data=null;
if(list.size()>0) {
data="true";
return data;
}else {
data="fail";
return data;
}
上面的代码后台输出的昵称为空,因为这样写他获取的是登录页面上用户输入的数据,修改为如下代码
public String csdl(String cliName,String cliPassword,HttpServletRequest request,HttpServletResponse response,HttpSession session) throws IOException {
System.out.println(cliName);
System.out.println(cliPassword);
List<Client> list = clientService.login(cliName, cliPassword);
String data=null;
if(list.size()>0) {
String cliRealname=list.get(0).getCliRealname();
session.setAttribute("cliRealname", cliRealname);
data="true";
return data;
}else {
data="fail";
return data;
}
String cliRealname=list.get(0).getCliRealname();
session.setAttribute(“cliRealname”, cliRealname);
这段代码是从查询语句中获取用户的昵称并给到页面上。
最后
以上就是自然便当为你收集整理的Spring MVC实现用户登录后显示用户昵称的全部内容,希望文章能够帮你解决Spring MVC实现用户登录后显示用户昵称所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复