码迷,mamicode.com
首页 >  
搜索关键字:user story    ( 38753个结果
Mac下浏览器跨域配置方法
open -n /Applications/Google\ Chrome.app/ --args --disable-web-security --user-data-dir=/Users/hooliy/Documents/MyChromeDevUserData open -n /Applicati ...
分类:系统相关   时间:2021-04-21 11:49:55    阅读次数:0
springboot使用逆向工程生产mybatis(比程序员写的要好用)
转换情况 数据库表字段名称 实体对象属性名称 比如: user_name userName product_type productType 如果数据库中的字段名称you多个单词构成,通过MyBatis逆向工程生产的对象属性会 按照驼峰命名规则生产属性名称 --> <id column="id" j ...
分类:编程语言   时间:2021-04-20 15:46:14    阅读次数:0
Mybatis-puls进阶
主键生成策略 @TabelID uuid 自增ID 雪花算法 mybatis-plus 的主键策略 package com.baomidou.mybatisplus.annotation; public enum IdType { AUTO(0), //数据库自增ID 记住表ID字段一定是自增的 N ...
分类:其他好文   时间:2021-04-20 15:05:56    阅读次数:0
oracle创建用户
创建用户 SQL> conn sys/123456 as sysdba 已连接。 SQL> show user USER 为 "SYS" SQL> create user Irving identified by Irving; 用户已创建。 用户虽然创建了但是什么权限都没有 给用户授权后就能登陆 ...
分类:数据库   时间:2021-04-20 14:57:17    阅读次数:0
索引优化
索引优化 1.1SQL性能下降的原因 查询语句写的很不好; 索引失效 单值索引 select * from user where name=''; create index idx_user_name on user(name); 复合索引 select * from user where name ...
分类:其他好文   时间:2021-04-20 14:31:28    阅读次数:0
LINUX-shell&find 指令
1、编写脚本 createuser.sh,实现如下功能:使用一个用户名作为参数,如果 指定参数的用户存在,就显示其存在,否则添加之;显示添加的用户的id号等信息 read -p " input the user: " USER if id $USER &> /dev/null ; then echo ...
分类:系统相关   时间:2021-04-20 14:31:15    阅读次数:0
Vue3.0路由跳转对象的传递和接收
1.当前路由传递对象参数 (1)通过this.$router.push传递 var arr = JSON.stringify(this.user) this.$router.push({name:'home',params:{user:encodeURIComponent(arr)}}) this. ...
分类:其他好文   时间:2021-04-20 14:26:59    阅读次数:0
大二下学期团队项目(app页面绘制)
今日主要绘制了首页,圆盘页面,个人页面 效果如下: 今日也了解了获取验证码登录的部分,在网上了解到需要短信平台的接口,在网上找了几个但是注册需要营业执照, 验证码只能暂时搁置,只有一个代码框架,没有实际功能: package com.example.cloudlibrary; import andr ...
分类:移动开发   时间:2021-04-20 14:21:22    阅读次数:0
Caused by:com.rabbitmq.client.ShutdownSignalException: connection error;(reply-code=530, reply-text=NOT_ALLOWED - access to vhost '/' refused for user 'admin'
学习rabbitMQ时 自己写了一个发送者 案例 运行后报错: Caused by: com.rabbitmq.client.ShutdownSignalException: connection error; protocol method: #method<connection.close>(r ...
分类:数据库   时间:2021-04-20 14:20:37    阅读次数:0
oralce操作基础操作
解锁用户 SQL> alter user scott identified by tiger account unlock; 用户已更改。 切换用户 SQL> conn scott/tiger 已连接。 查看当前用户 SQL> show user USER 为 "SCOTT" 查看所有表 SQL> ...
分类:其他好文   时间:2021-04-20 14:12:18    阅读次数:0
38753条   上一页 1 ... 27 28 29 30 31 ... 3876 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!