首页

spring注解--@Scope

1.@Scope作用? @Scope注解用于作用域。SpringIoc中容器的作用域包含如下几种: 1.1 singleton(单例模式,默认模式):全局有且仅有一个实例 1.2 prototype(多例模式):每次获取bean的时候会生成一个新的实例 1.3 web(request、sessio...

2021-02-23 18:00:42 作者:求是科技


Spring annotation --@Scope

1.@Scope effect ? @Scope Annotations are used for scope .SpringIoc The scope of a container in is as follows : 1.1 singleton( The singleton pattern ,...

2021-02-23 18:01:07 作者:Qiushi Technology


Hive-常见调优方式 && 两个面试sql

Hive作为大数据领域常用的数据仓库组件,在设计和开发阶段需要注意效率。影响Hive效率的不仅仅是数据量过大;数据倾斜、数据冗余、job或I/O过多、MapReduce分配不合理等因素都对Hive的效率有影响。对Hive的调优既包含对HiveQL语句本身的优化,也包含Hive配置项和MR方面的调 整...

2021-02-23 18:15:07 作者:Hoult_吴邪


Hive common tuning methods & two interview SQL

Hive As a common data warehouse component in the field of big data , We need to pay attention to efficiency in the design and development phase . infl...

2021-02-23 18:15:25 作者:Hoult_ Wu Xie


SpringCloud database connection debug

Created by Wang, Jerry, last modified on Aug 08, 2016 The environment variable VCAP _SERVICES is used by Cloud Foundry to provide access information ...

2021-02-23 18:19:42 作者:Jerry Wang


每天学一个 Linux 命令(31):md5sum

命令简介 md5sum 用于计算和校验文件的MD5值。 md5sum 常常被用来验证网络文件传输的完整性,防止文件被人篡改。在日常工作当中,我们可以用来监控系统中的重要文件是否被篡改。 还可以使用使用 md5sum 生成文件或用户的密码。 语法格式 md5sum 选项 文件 选项说明 b 使用二进...

2021-02-23 18:20:06 作者:民工哥


每天学一个 Linux 命令(30):cut

命令简介 cut 将文件中行中内容按指定分隔符分割并输出。 cut命令还可以用于删除文件中指定行或段,然后打印输出更改后的内容。还可能用以拼接文件内容到一个新的文件中,功能和cat类似。 命令格式 cut 选项 链接文件名 cut OPTION LINKNAME 选项说明 b 只显示行中指定(字节...

2021-02-23 18:20:07 作者:民工哥


SpringCloud database connection debug

Created by Wang, Jerry, last modified on Aug 08, 2016 The environment variable VCAP _SERVICES is used by Cloud Foundry to provide access information ...

2021-02-23 18:20:09 作者:Jerry Wang


(九) MyBatis从入门到入土——延迟加载、鉴别器以及继承

这是mybatis系列第9篇,没看前文的建议先去【Java冢狐】公众号中查看前文,方便理解和掌握。在上一篇中我们介绍了关于MyBatis的自动映射是如何开启以及使用的,想必大家对于这方面的知识有所了解了。 今天要给大家带来的主要是MyBatis延迟加载以及鉴别器相关方面的知识以及内容。 延迟加载 延...

2021-02-23 18:21:09 作者:冢狐


Learn a Linux command every day (31): md5sum

Command profile md5sum For calculating and verifying files MD5 value . md5sum It is often used to verify the integrity of network file transmissi...

2021-02-23 18:21:24 作者:Brother of migrant workers


Learn a Linux command every day (30): cut

Command profile cut Split the contents of the line in the file by the specified separator and output . cut Commands can also be used to delete spe...

2021-02-23 18:21:26 作者:Brother of migrant workers


(9) Mybatis from the beginning to the end -- delay loading, discriminator and inheritance

This is a mybatis The first series 9 piece , Go ahead without looking at the previous suggestions 【Java Grave Fox 】 The official account shows the pr...

2021-02-23 18:21:51 作者:Fox in the grave


7.Java锁之读写锁

概念 独占锁: 该锁一次只能被一个线程锁持有( ReetrantLock 和 Synchronized 都是独占锁) 共享锁: 该锁可以被多个线程持有 对ReentrantReadWriteLock而言,它的读锁是共享,写锁是独占。写的时候一个人写,但是可以多个人同时读。 为什么会有写锁和读锁 原...

2021-02-23 18:30:00 作者:为什么算法这么难

7.Java锁之读写锁

7. Read write lock of Java lock

Concept An exclusive lock : This lock can only be held by one thread lock at a time ( ReetrantLock and Synchronized All exclusive locks ) Sha...

2021-02-23 18:30:19 作者:Why is the algorithm so difficult

7. Read write lock of Java lock

8.Java锁之公平锁和非公平锁

概念 公平锁: 是指多个线程按照申请锁的顺序来获取锁。类似于排队买饭,先来后到,先来先服务,就是公平的,也就是队列 非公平锁: 是指多个线程获取锁的顺序,并不是按照申请锁的顺序。有可能申请的线程比先申请的线程优先获取锁,在高并发环境下,有可能造成优先级翻转,或者饥饿的线程(也就是某个线程一直等不到...

2021-02-23 18:35:56 作者:为什么算法这么难


使用docker-compose部署kafka服务

1 安装 1. 安装docker compose,需要预先安装好Docker sudo curl L 'https://github.com/docker/compose/releases/download/1.27.4/docker compose $(uname s) $(uname m)' ...

2021-02-23 18:35:57 作者:JJLAAA

使用docker-compose部署kafka服务

Spring 2021 chainlink virtual hacking announcement

Original title :Announcing the Spring 2021 Chainlink Virtual Hackathon Original author :Chainlink reference post: https://blog.chain.link/chainlink ...

2021-02-23 18:39:44 作者:Chainlink


8. Fair lock and unfair lock of Java lock

Concept Fair lock : It means that multiple threads acquire locks according to the order in which they apply for locks . It's like queuing up to b...

2021-02-23 18:39:48 作者:Why is the algorithm so difficult


Deploying Kafka service with docker compose

1 install 1. install docker compose, It needs to be pre installed Docker sudo curl L 'https://github.com/docker/compose/releases/download/1.27.4/d...

2021-02-23 18:39:53 作者:JJLAAA

Deploying Kafka service with docker compose

(九) MyBatis从入门到入土——延迟加载、鉴别器以及继承

这是mybatis系列第9篇,没看前文的建议先去【Java冢狐】公众号中查看前文,方便理解和掌握。在上一篇中我们介绍了关于MyBatis的自动映射是如何开启以及使用的,想必大家对于这方面的知识有所了解了。 今天要给大家带来的主要是MyBatis延迟加载以及鉴别器相关方面的知识以及内容。 延迟加载 延...

2021-02-23 18:43:30 作者:程序猿欧文


  • «
  • 3076
  • 3077
  • 3078
  • 3079
  • 3080
  • »
  • 精选文章
  1. Java基础-继承
  2. k8s部署 (进行中)
  3. Hive-常见调优方式 && 两个面试sql
  4. 死磕Spring之IoC篇 - BeanDefinition 的加载阶段(XML 文件)
  5. Java basics exception
  6. Java Basics - Reflection
  7. Java Basics - inheritance
  8. K8s deployment (in progress)
  9. Hive common tuning methods & two interview SQL
  10. The loading phase of beandefinition (XML file)
  11. 死磕Spring之IoC篇 - BeanDefinition 的加载阶段(XML 文件)
  12. Hive-常见调优方式 && 两个面试sql
  13. The loading phase of beandefinition (XML file)
  14. Hive common tuning methods & two interview SQL
  15. iconv文件编码转换由windows文件放到linux下
  16. The code conversion of iconv file is put into Linux by windows file
  17. SpringBoot2+intellij IDEA开发前环境准备
  18. Preparation of pre development environment for springboot2 + IntelliJ idea
  19. Docker私有仓库部署
  20. Docker private warehouse deployment

广告位

赞助商

免责声明:本站所有信息均搜集自互联网,并不代表本站观点,本站不对其真实合法性负责。如有信息侵犯了您的权益,请告知,本站将立刻删除。联系邮箱:chxpostbox@gmail.com,我们将及时处理。
Copyright © 2019-2020 Java人 All Rights Reserved.