一、环境 Idea 2020.1 JDK 1.8 maven 二、目的 spring boot 通过整合influxdb gitHub地址: https://github.com/ouyushan/ouyushan-spring-boot-samples 三、步骤 3.1、点击File → New ...
分类:
数据库 时间:
2020-11-19 12:55:13
阅读次数:
14
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>pdf转图片与上传</title> </head> <body> <input id='pdf' type='file' accept="application ...
分类:
Web程序 时间:
2020-11-19 12:26:43
阅读次数:
19
一、事件定义类,即子窗体 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; ...
以下是main函数最开始的两段,也是cocos2d一开始执行的地方: AppDelegate app; return Application::getInstance()->run(); 接下来用代码对以上函数进行简单复原: #include<iostream> #include<assert.h> ...
分类:
其他好文 时间:
2020-11-11 16:08:51
阅读次数:
4
偏函数应用(Partial Application)是指固定一个函数的某些参数,然后产生另一个更小元的函数。而所谓的元是指函数参数的个数,比如含有一个参数的函数被称为一元函数。 偏函数应用(Partial Application)与函数柯里化很容易混淆,它们之间的区别是: 偏函数应用是固定一个函数的 ...
分类:
其他好文 时间:
2020-11-10 10:30:28
阅读次数:
7
public partial class App : Application { public App() { this.Startup += (o1, e1)=>{ string commandLine = Environment.CommandLine; string appFilePath = ...
分类:
移动开发 时间:
2020-11-08 17:59:30
阅读次数:
30
TechRoad 1. Architecture <Java Application architecture> modular, Spring context config <EIS> technology decision, base eis-platform-brms <MS PPP> cha ...
分类:
其他好文 时间:
2020-11-07 16:51:15
阅读次数:
24
1,创建module,pom引入依赖:spring-boot-configuration-processor 2,创建entity,类上加注解:@ConfigurationProperties(prefix="sms"),这样可以读取application.yml文件,把文件的属性映射到class的 ...
分类:
编程语言 时间:
2020-11-07 15:49:12
阅读次数:
18
前置知识 ajax形式post提交数据的content-type有主要常用三种 application/x-www-form-urlencoded multipart/form-data(上传文件) application/json 原生的django对于content-type为applicati ...
分类:
移动开发 时间:
2020-11-06 01:26:29
阅读次数:
24
this.Close(); 只是关闭当前窗口,若不是主窗体的话,是无法退出程序的,另外若有托管线程(非主线程),也无法干净地退出; Application.Exit(); 强制所有消息中止,退出所有的窗体,但是若有托管线程(非主线程),也无法干净地退出; Application.ExitThread ...
分类:
编程语言 时间:
2020-11-04 18:44:34
阅读次数:
18