ICode9

精准搜索请尝试: 精确搜索
  • .WrongArgumentException: Malformed database URL, failed to parse the connection string near ';c2019-11-25 16:04:35

    连接mysql库报的异常信息: org.springframework.transaction.CannotCreateTransactionException: Could not open JDBC Connection for transaction; nested exception is org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory (Cannot load con

  • Droidcon Shanghai 2019安卓开发者大会,分享Android系统国内外最前沿技术2019-10-14 17:01:29

    Droidcon 将在2019年11月2日-11月3日来到魔都上海为大家分享Android系统国内外最前沿技术。 Droidcon2009年起源于德国,至今已走过10余年头,参会人数累计25万人成为国际技术研发者最有品牌效应的线下活动。 Droidcon作为全球安卓最具权威的盛会,每年吸引最顶尖的国际技术人才参与其中

  • The Preliminary Contest for ICPC Asia Shanghai 20192019-09-18 17:03:37

    A B C D E F G H I J K L 补 sineMora cycleke cycleke 补 OwenCreeper 补 . . sineMora x cycleke 这次网络赛中途出现了一些策略上的失误,中途全队都在查F代码,还在E上花了太长的时间, 没有及时弃掉。 这里写一下我做(补)的题的简要题解。 A.Lightning Routing I 题意:给出

  • springboot2.0 连接数据库2019-09-17 12:36:36

    springboot2.0 连接数据库需要设置时区 #mysql spring.datasource.driver-class-name=com.mysql.jdbc.Driver spring.datasource.url=jdbc:mysql://127.0.0.1:3306/springboot?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai spring.datasource.usern

  • The Preliminary Contest for ICPC Asia Shanghai 2019 G. Substring (滑窗+哈希)2019-09-16 20:56:13

      G. Substring   哎   一直超时or超内存 然后一直改一直改 然后 是 答案错误 然后 然后 最后结论是哈希姿势不对   我在别的地方找了这个: //https://www.cnblogs.com/napoleon_liu/archive/2010/12/29/1920839.htmluint32_t hash( uint32_t a){ a = (a+0x7ed55d16) + (a<<

  • The Preliminary Contest for ICPC Asia Shanghai 20192019-09-16 12:41:46

    D:Counting Sequences I 题意:求元素为n个的子序列的个数满足. 思路:因为n<=3000,可以分析出最多有11个非1元素,dfs枚举剪枝,当所有非1元素的乘积 f 和加和 s 满足f-s+cnt>3000时,递归结束。一个序列的贡献为,(a, b, c为每种数的个数) 代码: #include <bits/stdc++.h> #define LL long

  • kaggle华人grandmaster列表(转)2019-08-20 14:39:54

    原文链接:https://www.kaggle.com/h4211819/grandmaster/data name url_profile highest rank current rank gold count city bestfitting https://www.kaggle.com/bestfitting 1 1 20 Changsha Guanshuo Xu https://www.kaggle.com/wowfattie 7 9 8 Kear

  • Docker基础镜像时区修改2019-08-14 23:56:50

    我们在构建自己的docker镜像时,系统默认一般为UTC,我们需要改为CST Ubuntu16.04基础镜像:  1 FROM ubuntu:16.042 MAINTAINER xx@example3 RUN ln -sf /usr/share/zoneinfo/Asia/ShangHai /etc/localtime4 RUN echo "Asia/Shanghai" > /etc/timezone5 RUN dpkg-reconfigure -f nonin

  • 安装dbeaver,The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more tha2019-07-27 17:56:14

    在连接mysql时,出现了以下错误:   解决方法是 在数据库链接指定useUnicode=true&useSSL=false&characterEncoding=utf8&serverTimezone=Asia/Shanghai  最终配置如下:  

  • 成都生活2019-07-21 22:03:50

    原文链接:http://www.cnblogs.com/shinyzhu/archive/2009/06/30/chengduu-shanghai.html 还记得2002年9月18号,第一天到成都。 转眼之间,已经是2009年。 成都的生活即将告一段落。 转载于:https://www.cnblogs.com/shinyzhu/archive/2009/06/30/chengduu-sh

  • 【Ubuntu日常技巧】Ubuntu命令行设置系统时区、时间2019-07-06 12:40:19

    原文链接:http://www.cnblogs.com/QuLory/archive/2013/03/24/2978366.html 最近折腾手机上安装Ubuntu,发现显示的时间不对,可惜当前的 Date and Time菜单中没法进行时间设置,而且其显示的为London地区的时间,故通过命令行修改之; 1、确定所在时区的编号 可以

  • LINUX时区的设置2019-06-30 09:49:27

    # tzselect Please identify a location so that time zone rules can be set correctly. Please select a continent or ocean. 1) Africa 2) Americas 3) Antarctica 4) Arctic Ocean 5) Asia 6) Atlantic Ocean 7) Australia 8) Europe 9) Indian Ocean 10) Pacific Ocean

  • Linux 的目录处理命令:mkdir2019-06-04 22:03:11

    第四讲 Linux 常用命令 第1.2节 目录处理命令 一、目录处理命令:mkdir                    命令所在路径:/bin/mkdir ; 语法:mkdir -p [目录名] ;  功能:创建新目录。              选项:-p 指递归创建  即:可以在一个本身不存在的目录被创建的同时再创建它的子

  • 数据库查询出来的时间总是比存的时间多8个小时2019-06-01 16:56:16

    在yml文件中加入如下代码: jdbc:mysql://127.0.0.1:3306/testdb01?serverTimezone=Asia/Shanghai

  • Survey lists 10 most innovative cities2019-05-28 19:52:50

    From China Daily Beijing and Shanghai are among the 10 most innovative cities in the world, based on published articles in leading academic journals, a survey released on Friday said. The reported by the Shanghai Institute for Science of Science and Sprin

  • Docker修改时区2019-04-19 10:42:34

    简介 docker容器打日志时间滞后8小时 方法 启动时修改时区 Docker修改默认时区 已启动的容器修改时区 进入容器docker exec -i -t [CONTAINNER] /bin/bash 然后 ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime或者cp /usr/share/zoneinfo/Asia/Shanghai /etc/loca

  • BGP为什么要同步?细说同步规则2019-04-10 14:57:07

    BGP是为TCP/IP互联网设计的外部网关协议,用于多个自治域之间。 它既不是基于纯粹的链路状态算法,也不是基于纯粹的距离向量算法。 它的主要功能是与其他自治域的BGP交换网络可达信息。 各个自治域可以运行不同的内部网关协议。 BGP更新信息包括网络号/自治域路径的成对信息。 自治域

  • Jenkins时间修改为北京时间2019-03-09 15:01:41

    jenkins安装后时间一直是utc时间,不太方便。 系统管理->脚本命令行 运行: System.setProperty('org.apache.commons.jelly.tags.fmt.timeZone', 'Asia/Shanghai') 这就改回北京时间了:

  • Lombok 在继承类上面的注意2019-02-22 18:51:28

    找不到符号异常 在控制台项目中配置Lombok 编译会报错 找不到符号 解决 方法: 父类字段ToString不了 @Data @NoArgsConstructor @AllArgsConstructor public class School { public int id; public String name; public String age; } @Data class ShangHai extends Sch

  • 【Hive学习之六】Hive Lateral View &视图&索引2019-02-16 17:37:48

    环境  虚拟机:VMware 10   Linux版本:CentOS-6.5-x86_64   客户端:Xshell4  FTP:Xftp4  jdk8  hadoop-3.1.1  apache-hive-3.1.1 一、Hive Lateral ViewLateral View用于和UDTF函数(explode、split)结合来使用。首先通过UDTF函数拆分成多行,再将多行结果组合成一个支持别名

  • mysql 基本操作 四2019-02-15 12:42:53

    1.临时表 当绘画结束时,临时表会自动销毁,无法用show tables 查看 临时表。 MariaDB [jason]> create temporary table tmp(pro char(30),city char(30));Query OK, 0 rows affected (0.01 sec)MariaDB [jason]> insert into tmp values('shanghai','shanghai');Query OK, 1

  • CentOS时间同步和时区修改2019-01-29 18:55:06

    1、查看时区centos7:timedatectl|grep "Time zone"centos6:cat /etc/sysconfig/clock2、修改时区centos7:timedatectl set-timezone Asia/Shanghai # 设置系统时区为上海centos6:修改文件:/etc/sysconfig/clock 内容:ZONE="Asia/Shanghai"3、时间的修改安装ntp软件:yum install ntp -y同步

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有