资源简介
SSM+Websocket+jQuery实现类似微信网页版即时聊天项目。
代码片段和文件信息
package com.windhome.fluentwind.controller;
import com.windhome.fluentwind.service.IUserService;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.CookieValue;
import org.springframework.web.bind.annotation.RequestMapping;
import javax.annotation.Resource;
/**
* Created by enhui.tang on 2017/6/16.
*/
@Controller
public class MainController {
@Resource
private IUserService userService=null;
@RequestMapping(“/“)
public String main(@CookieValue(value = “WindChatToken“required = false) String tokenModel model){
if (token != null) {
if (userService.checkToken(token)) {
model.addAttribute(“token“token);
return “main“;
}
}
return “login“;
}
}
相关资源
- 基于SSM的个人博客+数据库
- ssm完整项目-培训机构招生项目的教务
- 酒店预定管理系统项目源码.rar
- SSM框架开发的在线考试系统(spring+
- SSM学生信息管理系统.zip
- SSM整合 部门员工增删改查
- 仓库管理系统+数据库
- 在线拍卖系统
- 具有查重检测功能的作业管理系统
- SSM搭建的商品管理系统Commodity_system源
- 网上零食商城(ssm+bootstrap+jquery+Angu
- ssm水果商城.zip
- 人事管理系统(注解 Mybatis+Spring+Spr
- 基于SSM框架的简单的CRUD操作
- Spring MVC + Mybatis+Spring实现的个人博客
- Spring+Spring mvc + Mabatis 开发的oa办公系
- 基于Maven依赖的SSM AJAX增删改查demo
- 商城后台管理系统
评论
共有 条评论