码迷,mamicode.com
首页 >  
搜索关键字:add column    ( 42886个结果
service层,抽取为接口
抽取为接口后, springboot事务开启,不在报错。 @Transactional public interface DescriptionService { public Description addDescription(Description description) ; 启动类 @Sp ...
分类:其他好文   时间:2021-04-30 12:36:32    阅读次数:0
prometheus更改默认端口
默认的9090改为9999: 容器 docker run -d -p 9999:9090 \ -v $PWD/prometheus.yml:/etc/prometheus/prometheus.yml \ --name prometheus \ prom/prometheus \ 二进制 安装包解压 ...
分类:其他好文   时间:2021-04-30 12:20:45    阅读次数:0
git提交文件
1、查看修改的文件 git status 2、添加文件: git add 文件名 git add -A 一键add 3、提交文件: git commit -m "提交文件时的说明" 4、推送到远程仓库: git push ...
分类:其他好文   时间:2021-04-30 12:07:18    阅读次数:0
antd vue form 编辑数据回显
<template> <div> <div><formsearch></formsearch></div> <div><modalbox></modalbox></div> <div> <a-table :columns="columns" :data-source="data" :scroll=" ...
分类:其他好文   时间:2021-04-30 12:06:23    阅读次数:0
java 删除list中符合条件的对象(几种方法,避免入坑)
一、首先list遍历方法有那么几种:使用for循环、iterator、还有就是lambda表达式循环 1、首先创建一个测试类 class User2{ Integer id; String name; public User2(Integer id, String name) { this.id = ...
分类:编程语言   时间:2021-04-30 12:02:56    阅读次数:0
libmaxminddb安装
https://github.com/maxmind/libmaxminddb ubuntu sudo add-apt-repository ppa:maxmind/ppa sudo apt update sudo apt install libmaxminddb0 libmaxminddb-dev ...
分类:数据库   时间:2021-04-30 11:55:10    阅读次数:0
MySQL数据库基础
数据库的创建 CREATE DATABASE 数据库名称 表的创建 CREATE TABLE 表名称 ( -- not null 设置非空 列名称1 数据类型 not null, 列名称2 数据类型, ....... --设置主键 constraint PK_Reader_ID primary ke ...
分类:数据库   时间:2021-04-29 12:01:35    阅读次数:0
SQL Server “RESTORE FILELISTONLY” Resultset
SQL Server “RESTORE FILELISTONLY” Resultset Dead-end: SELECT INTO is nice because you don't have to define the table columns but it doesn't support EX ...
分类:数据库   时间:2021-04-29 11:53:00    阅读次数:0
List根据指定字段进行分组C#
var sql = @"update [TABLE] WITH (ROWLOCK) SET 匹配方式 = '{0}' where ID in({1})"; //lissqls 是你要分组的泛型集合 var GroupList = lissqls.GroupBy(x => x.MatchType).S ...
分类:Windows程序   时间:2021-04-28 12:20:20    阅读次数:0
docker安装
# 安装依赖包 yum install -y yum-utils # 添加Docker软件包源 yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo # 安装Docker CE yu ...
分类:其他好文   时间:2021-04-28 12:12:26    阅读次数:0
42886条   上一页 1 ... 29 30 31 32 33 ... 4289 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!