springboot2整合vue开发在线音乐网站系统设计[通俗易懂]

springboot2整合vue开发在线音乐网站系统设计[通俗易懂]springboot+vue的前后端分离项目后台主要分为:用户管理、歌手管理、歌单管理用户在前端可以搜索歌曲名字、播放歌曲(如果上传了歌词,点击

欢迎大家来到IT世界,在知识的湖畔探索吧!

springboot+vue的前后端分离项目

后台主要分为:用户管理、歌手管理、歌单管理

用户在前端可以搜索歌曲名字、播放歌曲(如果上传了歌词,点击歌曲图片,可以显示歌词),可以评论歌曲,给歌曲评分等

用户还可以设置自己的信息,上传头像。

不过,歌曲取消收藏模块有点问题

运行环境

jdk7(8)+mysql+IntelliJ IDEA+maven

项目技术(必填)

springboot+vue+mybatis

springboot2整合vue开发在线音乐网站系统设计[通俗易懂]

springboot2整合vue开发在线音乐网站系统设计[通俗易懂]

springboot2整合vue开发在线音乐网站系统设计[通俗易懂]

springboot2整合vue开发在线音乐网站系统设计[通俗易懂]

springboot2整合vue开发在线音乐网站系统设计[通俗易懂]

springboot2整合vue开发在线音乐网站系统设计[通俗易懂]

springboot2整合vue开发在线音乐网站系统设计[通俗易懂]

springboot2整合vue开发在线音乐网站系统设计[通俗易懂]

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

(0)

相关推荐

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

联系我们YX

mu99908888

在线咨询: 微信交谈

邮件:itzsgw@126.com

工作时间:时刻准备着!

关注微信