码迷,mamicode.com
首页 >  
搜索关键字:instance    ( 6546个结果
【翻译自mos文章】DBA_JOBS 和 DBA_JOBS_RUNNING 不同的结果的解释
【翻译自mos文章】DBA_JOBS 和 DBA_JOBS_RUNNING 不同的结果的解释 DBA_JOBS 和 DBA_JOBS_RUNNING 不同的结果 參考原文: Different Results from DBA_JOBS and DBA_JOBS_RUNNING (Doc ID 10 ...
分类:数据库   时间:2020-05-19 00:49:11    阅读次数:98
[DevOps] Set up and run a PostgreSQL instance locally with Docker Compose
When we need to spin up a database instance for our new project, installing the database management system directly on our local machine is almost alw ...
分类:数据库   时间:2020-05-18 19:12:00    阅读次数:67
Kafka核心技术与实战——15 | 消费者组到底是什么?
Consumer Group 是 Kafka 提供的可扩展且具有容错性的消费者机制 既然是一个组,那么组内必然可以有多个消费者或消费者实例(Consumer Instance),它们共享一个公共的 ID,这个 ID 被称为 Group ID 组内的所有消费者协调在一起来消费订阅主题(Subscrib ...
分类:其他好文   时间:2020-05-18 12:48:42    阅读次数:76
消息中间件(十)-----RabbitMq集成springboot
引入jar包 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
分类:编程语言   时间:2020-05-17 19:19:27    阅读次数:86
使用spring-data-jpa操作数据库crud
pom文件 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
分类:数据库   时间:2020-05-17 09:22:43    阅读次数:83
springboot整合mybatis
pom文件 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
分类:编程语言   时间:2020-05-17 01:30:41    阅读次数:78
Python-类和对象(__new__,__init__,classmethod)
class Singleton(object): def __new__(cls): # 关键在于这,每一次实例化的时候,我们都只会返回这同一个instance对象 if not hasattr(cls, 'instance'): cls.instance = super(Singleton, cl ...
分类:编程语言   时间:2020-05-16 17:03:32    阅读次数:64
SpringMVC=>applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance ...
分类:移动开发   时间:2020-05-16 15:17:24    阅读次数:72
SpringMVC=>web.xml基本配置
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:s ...
分类:编程语言   时间:2020-05-16 15:10:15    阅读次数:63
Django2.0完整版
WEB框架本质: 服务器程序和应用程序: 是一个socket服务端,而用户的浏览器就是一个socket客户端。例子:import?socketsok?=?socket.socket()sok.bind(("127.0.0.1",8008))sok.listen()while?True: conn,a ...
分类:其他好文   时间:2020-05-15 11:29:53    阅读次数:92
6546条   上一页 1 ... 38 39 40 41 42 ... 655 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!