欢迎大家来到IT世界,在知识的湖畔探索吧!
springboot+vue的前后端分离项目
后台主要分为:用户管理、歌手管理、歌单管理
用户在前端可以搜索歌曲名字、播放歌曲(如果上传了歌词,点击歌曲图片,可以显示歌词),可以评论歌曲,给歌曲评分等
用户还可以设置自己的信息,上传头像。
不过,歌曲取消收藏模块有点问题
运行环境
jdk7(8)+mysql+IntelliJ IDEA+maven
项目技术(必填)
springboot+vue+mybatis
package com.example.demo.controller;import com.alibaba.fastjson.JSONObject;import com.example.demo.service.impl.AdminServiceImpl;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestMethod;import org.springframework.web.bind.annotation.ResponseBody;import org.springframework.web.bind.annotation.RestController;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpSession;@RestController@Controllerpublic class AdminController { @Autowired private AdminServiceImpl adminService;// 判断是否登录成功 @ResponseBody @RequestMapping(value = "/admin/login/status", method = RequestMethod.POST) public Object loginStatus(HttpServletRequest req, HttpSession session){ JSONObject jsonObject = new JSONObject(); String name = req.getParameter("name"); String password = req.getParameter("password"); boolean res = adminService.veritypasswd(name, password); if (res) { jsonObject.put("code", 1); jsonObject.put("msg", "登录成功"); session.setAttribute("name", name); return jsonObject; } else { jsonObject.put("code", 0); jsonObject.put("msg", "用户名或密码错误"); return jsonObject; } }}
欢迎大家来到IT世界,在知识的湖畔探索吧!
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://itzsg.com/17948.html