javaweb
文章平均质量分 79
tt小呆熊
这个作者很懒,什么都没留下…
展开
-
vue的el-tree实现部门人员的tree展示选择,包括根据已有id进行默认选中设置
根据部门和人员,生成部门人员选择树,用的是Vue的el-tree生产树。java部分-------------------------------------------------------------------------------1:中间实体dto(就是前端要的字段,让从数据库中查询的时候,用这个来接收传递数据)查询数据,将部门和人员查询出来,用中间dto来接收。package me.zhengjie.modules.system.service.dto;import com.fas原创 2020-12-02 21:05:35 · 7004 阅读 · 0 评论 -
vue-element-template动态菜单获取全过程
一、后端采用springboot+mybatis-plus。改造自macrozheng/mall-tiny(https://github.com/macrozheng/mall-tiny,他这边是前端需要在router/index.js中配置路由信息,然后从数据库查询路由信息,进行匹配后,再显示出来,需要前后端匹配的。)1、数据库表整体表结构(resource不相关,可不用)菜单表2、部分代码菜单表对于的实体SysMenu:package com.jc.pms.modules.sys.mode原创 2020-09-22 09:20:50 · 2715 阅读 · 2 评论 -
bootstrap table使用:前端分页,获取值栈中的json值,加载到table中,获取选中的行信息
<%@ page contentType="text/html;charset=UTF-8" language="java" %><%@ include file="/common/taglibs.jsp" %><!DOCTYPE html><html><head> <meta原创 2018-11-21 21:10:14 · 807 阅读 · 0 评论 -
javaweb 获取用户菜单数据,前端循环遍历生成三级菜单
后台action方法//登录系统入口,用户名检测,菜单获取等。 public String portal() { User existUser=userService.getUserByNameAndPassword(user); if(existUser==null){ this.addActionError("登录账号或者...转载 2018-11-22 18:20:05 · 2433 阅读 · 0 评论 -
action用ModelDriven接收数据--个人笔记
1、表单中控件字段的名称跟对象属性名一致,并且有get和set方法。form的提交方式如果为get的话,action后面不能代参数(?)2、表单中的控件字段名不能重复,要不然action不接收,导致出错。3、更新对象时,排查对象的属性映射文件中update是否允许更新(user.hbn.xml)4、action中的方法不能被相互引用(不建议这样用),可以再service层操作通用的内容...原创 2018-11-22 21:53:36 · 216 阅读 · 0 评论 -
springmvc集合jackson的时候,包406错误, not acceptable according to the request "accept" headers.
解决The resource identified by this request is only capable of generating responses with characteristics not acceptable according to the request “accept” headers. SpringMVC中当在浏览器中输入对应的MappingUrl时,报T...转载 2019-04-23 14:02:48 · 717 阅读 · 0 评论