前言 1. 本系列文章基于 Tomcat9 2. 前置知识:servlet 定义 先来看看容器的定义,Tomcat 源码注释如下: /** * A <b>Container</b> is an object that can execute requests received from * a cl ...
分类:
其他好文 时间:
2020-06-22 13:00:55
阅读次数:
52
jvm系列(一):java类的加载机制 1、什么是类的加载 类的加载指的是将类的.class文件中的二进制数据读入到内存中,将其放在运行时数据区的方法区内,然后在堆区创建一个 java.lang.Class对象,用来封装类在方法区内的数据结构。类的加载的最终产品是位于堆区中的 Class对象, Cl ...
分类:
编程语言 时间:
2020-06-21 15:49:27
阅读次数:
48
根据微服务架构在各方面的要素,看看 Spring Cloud 和 Dubbo 都提供了哪些支持。 Dubbo Spring Cloud 服务注册中心 Zookeep er Spring Cloud Netflix Eureka 服务调用方式 RPC REST API 服务网关 无 Spring Cl ...
分类:
编程语言 时间:
2020-06-20 13:41:33
阅读次数:
163
python 在安装支付宝sdk前 ,需要安装加密模块 pycrypto 2.6.1 执行命令: pip install pycrypto 如果是Windows系统,到这里可能安装出错了,可能出现的错误如下: error: command ‘cl.exe’ failed: No such file ...
分类:
编程语言 时间:
2020-06-19 12:23:31
阅读次数:
130
package com.puxinwangxiao.mts.util; import javax.sound.sampled.AudioInputStream; import javax.sound.sampled.AudioSystem; import javax.sound.sampled.Cl ...
分类:
其他好文 时间:
2020-06-18 13:20:13
阅读次数:
73
上一篇:less变量 上篇主要讲述了less的变量的基本使用,本篇我们来讲解下less的一个常用规则,那就是嵌套了(老套娃了),这个使你在使用css的时候能够用起来非常方便和爽(爽就对了) 那么什么是嵌套呢,我们首先看一个例子: <header class="page-header"> <h1 cl ...
分类:
其他好文 时间:
2020-06-16 23:44:41
阅读次数:
99
没有mybatis 建表 查询 import java.sql.*; public class DatabaseTest { public static void main(String[] args) throws SQLException, ClassNotFoundException { Cl ...
分类:
其他好文 时间:
2020-06-16 14:56:52
阅读次数:
61
如果想在任务成功或者失败额外做点事,可以重写Task类。 tasks.py from __future__ import absolute_import, unicode_literals from .celery import app from celery.task import Task cl ...
分类:
其他好文 时间:
2020-06-16 00:47:15
阅读次数:
358
中间有空格的情况 是选择到.class1类下的.class2类子节点,即.class2类的节点要是.class1类子节点 <style> .class1 { color: black; } .class1 .class2 { color: red; } </style> <body> <div cl ...
分类:
Web程序 时间:
2020-06-14 20:18:54
阅读次数:
72
先说如何使用VS自带OpenMP我使用的是vs2019 window10操作系统在VS中启用OpenMP很简单。在项目上右键->属性->配置属性->C/C++->语言->OpenMP支持,选择“是”即可。我的测试代码: 1 #include 2 #include 3 int main() 4 { 5... ...
分类:
其他好文 时间:
2020-06-14 16:42:22
阅读次数:
71