• 大小: 1.17MB
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2023-08-19
  • 语言: JavaScript
  • 标签: SSM  

资源简介

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“;
    }
}

评论

共有 条评论