#mpl

Forms Authentication and Role based Authorization: A Quicker, Simpler, and Correct Approach

https://www.codeproject.com/Articles/36836/Forms-Authentication-and-Role-based-AuthorizationSad,buttrue,“FormsauthenticationinASP.NETdoesnotdirectlysuppor...

Why there is two completely different version of Reverse for List and IEnumerable?

https://stackoverflow.com/questions/12390971/why-there-is-two-completely-different-version-of-reverse-for-list-and-ienumerablItisworthnotingthatthelistmethodisa...
代码星球 ·2021-02-08

Server.Transfer VS Response.Redirect – Simplified

https://www.codeproject.com/Articles/775221/Server-Transfer-VS-Response-Redirect-SimplifiedIntroductionInASP.NET,someoftheconceptsdothesametaskbutaremeanttobeus...

JavaScript-Templates

https://github.com/blueimp/JavaScript-Templateshttps://blueimp.github.io/JavaScript-Templates/https://github.com/blueimp/JavaScript-Templates/blob/master/README...
代码星球 ·2021-02-08

How do I add a simple onClick event handler to a canvas element?

Whenyoudrawtoacanvaselement,youaresimplydrawingabitmapinimmediatemode.Theelements(shapes,lines,images)thataredrawnhavenorepresentationbesidesthepixelstheyuseand...
代码星球 ·2021-02-08

设计模式 — 简单工厂模式(Simple Factory)

定义:定义一个工厂类,它可以根据参数的不同返回不同类型的实例,被创建的实例通常有公共的父类。模式类型:创建型模型Factory(工厂角色):即工厂类,负责实现创建所有产品实例的内部逻辑;工厂类可以直接被外界调用,创建所需的产品对象;在工厂类中提供了静态的工厂方法FactoryMethod(),它的返回类型为抽象产品Pr...

子类继承父类时JVM报出Error:Implicit super constructor People() is undefined for default constructor. Must define an explicit constructor

当子类继承父类的时候,若父类没有定义带参的构造方法,则子类可以继承父类的默认构造方法当父类中定义了带参的构造方法,子类必须显式的调用父类的构造方法若此时,子类还想调用父类的默认构造方法,必须在父类中明确声明默认的构造方法1packagecom.gaohui;23publicclassTest{4publicstatic...

Spring4 MVC RESTFul WebServices CRUD实例+RestTemplate

在这篇文章中,我们将使用Spring4 MVC编写一个CRUD RESTful Web服务,写一个REST客户端RestTemplate来使用这些服务。我们也将利用外部客户端测试的服务。简单介绍RESTREST 表示状态传输。这是一个体系结构样式,可用于设计网络服务,可以被各种客...

用关键字interface定义接口,通过关键字implements来实现接口

【定义】Java中,能够完成特定功能的,由若干属性和方法组织成的,相对独立的属性和方法的集合。【用途】实现类的多继承,以解决Java只能单继承,不支持多继承的问题。【特点】用关键字interface定义接口,通过关键字implements来实现接口;接口中的成员变量具有公共性(public)、静态性(static)和最...

leetcode (堆->simple)703,1046,前k大/小数

703第K大  classKthLargest{privatePriorityQueue<Integer>heap;privateintk;publicKthLargest(intk,int[]nums){heap=newPriorityQueue<>(k,(k1,k2)-&...
代码星球 ·2021-02-06

springboot中的resttemplate使用了jackson序列化遇到的坑

spring.jackson.time-zone=GMT+8spring.jackson.date-format=yyyy-MM-ddHH:mm:ss springboot之restTemplate学习SpringBoot系列:RestTemplate快速入门-harrychinese-博客园(cnblogs...

How to create a simple blog using ASP.NET MVC

http://prideparrot.com/blog/archive/2012/12/how_to_create_a_simple_blog_part1...
代码星球 ·2021-02-03

mpl_finance

mpl_finance是python中可以用来画出蜡烛图、线图的分析工具安装pipinstallmplfinance--upgrade--user-ihttps://pypi.tuna.tsinghua.edu.cn/simple单个股票K线图配置颜色importnumpyasnpimportpandasaspdimp...
代码星球 ·2021-02-01

使用RestTemplate实现http调用

今天想实现java后端发送formdata上传文件,为了以后查找方便,特此记录下来上一次使用WebClient实现远程调用(一个非阻塞、响应式的HTTP客户端,它以响应式被压流的方式执行HTTP请求)查看现在使用的RestTemplateRestTemplate是用于同步client端访问Restful服务的一个核心类...

spring boot2X整合Consul一使用RestTemplate实现服务调用

Consul可以用于实现分布式系统的服务发现与配置服务调用有两种方式:  A.使用RestTemplate进行服务调用    负载均衡——通过Ribbon注解RestTemplate   B.使用Feign进行声明式服务调用    负载均衡——默认使用Ribbon实现 查看先使用RestTempla...
首页上一页...1516171819...下一页尾页