本文主要是介绍基于javaweb的宠物领养寄养商城系统(java+springboot+html+bootstrap+mysql),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
基于javaweb的宠物领养寄养商城系统(java+springboot+html+bootstrap+mysql)
运行环境
Java≥8、MySQL≥5.7
开发工具
eclipse/idea/myeclipse/sts等均可配置运行
适用
课程设计,大作业,毕业设计,项目练习,学习演示等
功能说明
基于javaweb+mysql的宠物领养寄养商城系统(java+Springboot+HTML+bootstrap+mysql)
项目介绍
管理员角色: 用户管理、角色管理、菜单管理、宠物信息、视频管理、在线留言、宠物用品管理、 常见问题管理、购物车、商城订单、领养订单、寄养订单
用户角色: 领养宠物、寄养宠物、视频秀、买家秀、在线留言、加入购物车、 购买、商城订单、领养订单、寄养订单
环境需要
1.运行环境:最好是java jdk 1.8,我们在这个平台上运行的。其他版本理论上也可以。 2.IDE环境:IDEA,Eclipse,Myeclipse都可以。推荐IDEA; 3.tomcat环境:Tomcat 7.x,8.x,9.x版本均可 4.硬件环境:windows 7/8/10 1G内存以上;或者 Mac OS; 5.数据库:MySql 5.7版本;
6.是否Maven项目:是;
技术栈
-
后端:SpringBoot+Mybatis
-
前端:HTML+CSS+Bootstrap+jQuery
使用说明
-
使用Navicat或者其它工具,在mysql中创建对应名称的数据库,并导入项目的sql文件;
-
使用IDEA/Eclipse/MyEclipse导入项目,Eclipse/MyEclipse导入时,若为maven项目请选择maven;
若为maven项目,导入成功后请执行maven clean;maven install命令,然后运行;
- 将项目中application.properties配置文件中的数据库配置改为自己的配置; 4. 运行项目,登录地址:http://localhost:8089/login
管理员: admin/admin123
普通账户: liming/123456
用户信息管理控制层:
/**
- 用户信息
*/
@Controller
@RequestMapping(“/system/user”)
public class UserController extends BaseController
private String prefix = “system/user”;
@Autowired
private IUserService userService;
@Autowired
private IRoleService roleService;
@Autowired
private IPostService postService;
@RequiresPermissions(“system:user:view”)
@GetMapping()
public String user()
return prefix + “/user”;
@RequiresPermissions(“system:user:list”)
@PostMapping(“/list”)
@ResponseBody
public TableDataInfo list(User user)
startPage();
List list = userService.selectUserList(user);
return getDataTable(list);
@Log(title = “用户管理”, businessType = BusinessType.EXPORT)
@RequiresPermissions(“system:user:export”)
@PostMapping(“/export”)
@ResponseBody
public AjaxResult export(User user)
List list = userService.selectUserList(user);
ExcelUtil util = new ExcelUtil(User.class);
return util.exportExcel(list, “用户数据”);
@Log(title = “用户管理”, businessType = BusinessType.IMPORT)
@RequiresPermissions(“system:user:import”)
@PostMapping(“/importData”)
@ResponseBody
public AjaxResult importData(MultipartFile file, boolean updateSupport) throws Exception
ExcelUtil util = new ExcelUtil(User.class);
List userList = util.importExcel(file.getInputStream());
String message = userService.importUser(userList, updateSupport);
return AjaxResult.success(message);
@RequiresPermissions(“system:user:view”)
@GetMapping(“/importTemplate”)
@ResponseBody
public AjaxResult importTemplate()
ExcelUtil util = new ExcelUtil(User.class);
return util.importTemplateExcel(“用户数据”);
/**
- 新增用户
*/
<这篇关于基于javaweb的宠物领养寄养商城系统(java+springboot+html+bootstrap+mysql)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!