文章库ARTICLE COLUMN

  • JDBC连接MySQL8.0.13的记录

    JDBC连接MySQL8.0.13的记录

    摘要:版本开始连接数据库的驱动变更同时密码存储方式改变为需要修改配置文件中的为不使用修改原有账户的加密方式新密码如果报错,则为版本不一致导致,更换驱动版本即可出现警告只需要在数据库后加上该问题我没有遇到问题时区错误,在后添加的配置文件中直接...

    Jonathan ShieberJonathan Shieber 评论0 收藏0
  • Spring AOP

    Spring AOP

    摘要:前置通知返回通知当匹配的方法执行正常返回时运行获取返回值当我们想获取到某个方法的返回值时可以使用如下方式表示返回值类型这里使用的是类型我们也可以设置指定类型例如异常通知表示当抛出的是异常时才会调用此方法后置通知当匹配的方法执行完成后运...

    CharlesCharles 评论0 收藏0
  • [LeetCode] 857. Minimum Cost to Hire K Workers

    [LeetCode] 857. Minimum Cost to Hire K Workers

    Problem There are N workers. The i-th worker has a quality[i] and a minimum wage expectation wage[i]. Now we want to hire exactly K workers to form a paid group. When hiring a group of K workers, we...

    solocodersolocoder 评论0 收藏0
  • [LeetCode] 846. Hand of Straights

    [LeetCode] 846. Hand of Straights

    Problem Alice has a hand of cards, given as an array of integers. Now she wants to rearrange the cards into groups so that each group is size W, and consists of W consecutive cards. Return true if and...

    vslamvslam 评论0 收藏0
  • [LeetCode] 562. Longest Line of Consecutive One in

    [LeetCode] 562. Longest Line of Consecutive One in

    Problem Given a 01 matrix M, find the longest line of consecutive one in the matrix. The line could be horizontal, vertical, diagonal or anti-diagonal.Example:Input:[[0,1,1,0], [0,1,1,0], [0,0,0,1]]Ou...

    tomlingtmtomlingtm 评论0 收藏0
  • Java多线程学习——可重入锁

    Java多线程学习——可重入锁

    Java中的锁:http://ifeve.com/locks/

    luodongseuluodongseu 评论0 收藏0
  • [LeetCode] 222. Count Complete Tree Nodes

    [LeetCode] 222. Count Complete Tree Nodes

    Problem Given a complete binary tree, count the number of nodes. Note: Definition of a complete binary tree from Wikipedia:In a complete binary tree every level, except possibly the last, is completel...

    kamushin233kamushin233 评论0 收藏0
  • [LeetCode] 739. Daily Temperatures

    [LeetCode] 739. Daily Temperatures

    Problem Given a list of daily temperatures T, return a list such that, for each day in the input, tells you how many days you would have to wait until a warmer temperature. If there is no future day f...

    dailybirddailybird 评论0 收藏0
  • JavaWEB开发18——基础加强

    JavaWEB开发18——基础加强

    摘要:一类加载器什么是类加载器,作用是什么类加载器就加载字节码文件类加载器的种类类加载器有三种,不同类加载器加载不同的引导类加载器加载都是最基础的文件扩展类加载器加载都是基础的文件应用类加载器三方包和自己编写文件怎么获得类加载器重点字节码对...

    YoungdzeYoungdze 评论0 收藏0
  • 架构师软技能之协商(上)

    架构师软技能之协商(上)

    架构师软技能之协商(上)

    MarvinZhangMarvinZhang 评论0 收藏0
  • redis安装&&redis集群

    redis安装&&redis集群

    摘要:数据过期处理可以精确到毫秒的安装及部署部署环境需要系统,同样也有版本,可以练习使用。官方不典型支持。关闭进程正常关闭服务的地址端口号如果是本地服务,而且端口是这些参数可以省略。命令可以设置的有效期。修改端口,允许集群。 NoSql数据库之R...

    岳光岳光 评论0 收藏0
  • [LeetCode] 947. Most Nodes Removed

    [LeetCode] 947. Most Nodes Removed

    Problem On a 2D plane, we place stones at some integer coordinate points. Each coordinate point may have at most one stone. Now, a move consists of removing a stone that shares a column or row with a...

    ZacharyZachary 评论0 收藏0
  • LeetCode-1 Two Sum

    LeetCode-1 Two Sum

    摘要:题目解析给出一列整数数组和一个数字,如果计算出数组中的两个数之和等于,那么返回数组两个数的索引。解答基础的解法应该是将数组遍历之后取和,如果和等于那么结束循环。这种解法的效率为。 题目 Given an array of integers, return indices of the...

    Dr_NooooDr_Noooo 评论0 收藏0
  • [LeetCode] 86. Partition List

    [LeetCode] 86. Partition List

    Problem Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x. You should preserve the original relative order of the nodes in ea...

    YuqiYuqi 评论0 收藏0
  • JavaWEB开发17——文件上传与下载

    JavaWEB开发17——文件上传与下载

    摘要:文件上传解析请求正文的每部分的内容。获取上传文件的大小获取上传文件对应的输入流把上传的文件保存到指定文件中。如果上传的文件超过,用磁盘作为缓存。如果自己用流实现的文件上传,要在流关闭后,清理临时文件。 一、文件的上传和下载1、文件上传...

    TangpjTangpj 评论0 收藏0
  • 十种JVM内存溢出的情况,你碰到过几种?

    十种JVM内存溢出的情况,你碰到过几种?

    摘要:内存溢出的情况就是从类加载器加载的时候开始出现的,内存溢出分为两大类和。以下举出个内存溢出的情况,并通过实例代码的方式讲解了是如何出现内存溢出的。内存溢出问题描述元空间的溢出,系统会抛出。这样就会造成栈的内存溢出。 导言: 对于java程...

    ShevaKuilinShevaKuilin 评论0 收藏0
  • 物联网高并发编程之单台服务器最大并发TCP连接数

    物联网高并发编程之单台服务器最大并发TCP连接数

    摘要:对端,通过增加内存修改最大文件描述符个数等参数,单机最大并发连接数超过万甚至上百万是没问题的,国外公司在产品环境中已做到万并发 [TOC] 前言 曾几何时我们还在寻求网络编程中C10K问题的解决方案,但是现在从硬件和操作系统支持来看单台服务器支...

    leap_frogleap_frog 评论0 收藏0
  • 物联网高并发编程之C10K问题原理和解决方案

    物联网高并发编程之C10K问题原理和解决方案

    摘要:问题任一文件句柄的不成功会阻塞住整个应用。主要解决的前两个问题通过一个数组向内核传递需要关注的事件消除文件句柄上限,同时使用不同字段分别标注关注事件和发生事件,来避免重复初始化。问题逐个排查所有文件句柄状态效率不高。 C10K问题思维导图...

    dayday_updayday_up 评论0 收藏0
  • 物联网高并发编程之网络编程中的I/O模型

    物联网高并发编程之网络编程中的I/O模型

    摘要:缺点每个连接需要独立的进程线程多带带处理,当并发请求量大时为了维护程序,内存线程切换开销较大,这种模型在实际生产中很少使用。而在系统下,才引入,目前并不完善,因此在下实现高并发网络编程时都是以复用模型模式为主。 思维导图 showImg("http...

    hsluoyzhsluoyz 评论0 收藏0
  • 【译】十二因子应用(四)

    【译】十二因子应用(四)

    摘要:后端服务将后端服务视为可拔插的资源后端服务是一种在应用在网络上正常运行时消费的任意一种服务。一份因子应用的部署可以不经过任何代码修改将本地数据库替换成第三方的服务如。因子应用将这些数据库看做可拔插资源,在部署时是松耦合的。 IV 后端服...

    lx1036lx1036 评论0 收藏0
  • Spring Boot实现TUS协议支持文件断点上传

    Spring Boot实现TUS协议支持文件断点上传

    摘要:实现协议实现文件断点上传关于协议提供一种基于和机制用于文件断点续传。请求请求当前文件的服务器信息,返回文件大小和当前进度。请求上传文件,写入磁盘系统。是最简单的一个文件上传页面。参考文献关于协议本文中用到的关于请求 Spring Boot实现TUS...

    YacaToyYacaToy 评论0 收藏0
  • [LeetCode] 299. Bulls and Cows

    [LeetCode] 299. Bulls and Cows

    Problem You are playing the following Bulls and Cows game with your friend: You write down a number and ask your friend to guess what the number is. Each time your friend makes a guess, you provide a ...

    stefanstefan 评论0 收藏0
  • [LeetCode] 312. Burst Balloons

    [LeetCode] 312. Burst Balloons

    Problem Given n balloons, indexed from 0 to n-1. Each balloon is painted with a number on it represented by array nums. You are asked to burst all the balloons. If the you burst balloon i you will get...

    TerryCaiTerryCai 评论0 收藏0
  • [LeetCode] 929. Unique Email Addresses

    [LeetCode] 929. Unique Email Addresses

    Problem Every email consists of a local name and a domain name, separated by the @ sign. For example, in alice@leetcode.com, alice is the local name, and leetcode.com is the domain name. Besides lower...

    amuqiaoamuqiao 评论0 收藏0
  • 这也许是你不曾留意过的 Mybatis 细节

    这也许是你不曾留意过的 Mybatis 细节

    摘要:当有多个参数时一定要指定,否则映射不到对应的字段。另外,中的可以是任意的。 showImg("https://segmentfault.com/img/remote/1460000017213201?w=1080&h=469"); Mybatis 可以说是 Java 后端的必备技能,可能你和我一样经常使用到它。但有时 cv 多了...

    wupengyuwupengyu 评论0 收藏0

热门文章

<