码迷,mamicode.com
首页 >  
搜索关键字:asp.net application    ( 14554个结果
【随手记录】关于Factory method 'eurekaApplicationInfoManager' threw exception; nested exception is java.lang.NullPointerException
最近项目上部署程序时候报eureka相关的NPE错误,如下: Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. 2020- ...
分类:移动开发   时间:2020-11-20 11:50:24    阅读次数:17
SpringBoot配置文件的加载优先级以及如何配置
一、全局配置文件加载优先级 spring boot 启动会扫描以下位置的application.properties或者application.yml文件作为Spring boot的默认配置文件.数值越小的标号优先级越高。 file:./config/ (当前项目路径config目录下); file ...
分类:编程语言   时间:2020-11-19 13:00:39    阅读次数:23
Js 之pdf文件转图片上传
<!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
cocos2dx 入口函数分析
以下是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
WPF APP 启动时增加特殊逻辑
public partial class App : Application { public App() { this.Startup += (o1, e1)=>{ string commandLine = Environment.CommandLine; string appFilePath = ...
分类:移动开发   时间:2020-11-08 17:59:30    阅读次数:30
Tech road one step 7-Noc to 13-Nov
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
手写springboot starter
1,创建module,pom引入依赖:spring-boot-configuration-processor 2,创建entity,类上加注解:@ConfigurationProperties(prefix="sms"),这样可以读取application.yml文件,把文件的属性映射到class的 ...
分类:编程语言   时间:2020-11-07 15:49:12    阅读次数:18
axios与djangopost通信 后端获取数据
前置知识 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
C# WinForm程序中,使用多线程,在关闭窗体时 怎么关闭窗体的所有线程,使程序退出。
this.Close(); 只是关闭当前窗口,若不是主窗体的话,是无法退出程序的,另外若有托管线程(非主线程),也无法干净地退出; Application.Exit(); 强制所有消息中止,退出所有的窗体,但是若有托管线程(非主线程),也无法干净地退出; Application.ExitThread ...
分类:编程语言   时间:2020-11-04 18:44:34    阅读次数:18
14554条   上一页 1 ... 18 19 20 21 22 ... 1456 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!