#Pro

poj 3262 Protecting the Flowers 贪心

题意:给定n个奶牛,FJ把奶牛i从其位置送回牛棚并回到草坪要花费2*t[i]时间,同时留在草地上的奶牛j每分钟会消耗d[j]个草    求把所有奶牛送回牛棚内,所消耗草的最小值 思路:贪心,假设奶牛a和奶牛b所处位置为,    交换前....(ta,da)(tb,db)...

ProducerConsumerQueue

The folly::ProducerConsumerQueue classisaone-producerone-consumerqueuewithverylowsynchronizationoverhead.Thequeuemustbecreatedwithafixedmaximumsize(an...
代码星球 ·2020-04-05

8 ways to improve ASP.NET Web API performance

ASP.NETWebAPIisagreatpieceoftechnology.WritingWebAPIissoeasythatmanydevelopersdon’ttakethetimetostructuretheirapplicationsforgreatperformance.Inthisarticl...
代码星球 ·2020-04-05

Autofac Property Injection and Method Injection

Whileconstructorparameterinjectionisthepreferredmethodofpassingvaluestoacomponentbeingconstructed,youcanalsousepropertyormethodinjectiontoprovidevalues.Property...

Carrying per-request context using the HttpRequestMessage.Properties

 InaWebAPIapplication,IuseCastleWindsortosupplyservicesconfiguredwithPerWebRequestlifetimeandeverythingworksfineonIIS.However,whenIusetheASP.NETWebAPISelfH...

ASP.NET基于Redis的Provider库

因为session基于本地cache,以前我们自己写分布式缓存,或者数据库存储,或者cookie加密存储,来保存用户状态信息,但较少的直接通过创建一个继承 SessionStateStoreProviderBase 类,来实现自定义会话状态存储提供程序。但有ASP.NET官方的福利,我们就不能放过。...
代码星球 ·2020-04-05

Web API 源码剖析之默认消息处理程序链之路由分发器(HttpRoutingDispatcher)

我们在上一节讲述了默认的DefaultServer(是一个类型为HttpServer的只读属性)。本节将讲述DefaultHandler(是一个HttpMessageHandler的只读属性)。在WebAPI里默认是的一个HttpRoutingDispatcher类型,它继承于HttpMessageHandler。我们...

Vs打包工程 错误: Unable to update the dependencies of the project (转)

SetupProject错误:Unabletoupdatethedependenciesoftheproject在VS2010中编译包含安装工程的解决方案提示错误:Unabletoupdatethedependenciesoftheproject解决方法:1、用记事本打开*.vdproj文件;2、查找Hierarchy...
代码星球 ·2020-04-05

Package 'DXCore for Visual Studio' has failed to load properly

 Sinceinstalling13.1 IgetPackage'DXCoreforVisualStudio'hasfailedtoloadproperlyerrorwhenVS2008starts.IcannotloadDexExpressmanuallyeither.VS2010andVS201...

intellij idea maven project 无法显示dependencies

Intellj自动载入Mave依赖是一个很人性化的功能,但不排除有时候会碰到问题,导致pom文件修改却没有触发自动重新载入的动作或者加载中途出现弱网的情况中断载入的,此时需要手动强制更新依赖。 如下:手动删除ProjectSettings里面的Libraries内容;在MavenProject的试图里clea...

update cdh version ,but cdh use old conf ,problem solve

最近升级cdh版本,从4.5升级到5.0.0beta-2但是升级后,发现/etc/alternatives路径下的软链接还是只想旧的4.5版本,而且hadoop环境也是沿用4.5的版本conf,导致hive不能正常使用,报错为hdfs的版本不对。后面使用strace工具查看,发现它会与/var/lib/alternat...
代码星球 ·2020-04-05

SpringBoot进阶教程(六十一)intellij idea project下建多个module搭建架构(下)

在上一篇文章《SpringBoot进阶教程(六十)intellijideaproject下建多个module(上)》中,我们已经介绍了在intellijidea中创建project之后再分化多个module,今天再大致介绍介绍各个module之间详细工作的细分。如果是不考虑细分多个module的话,可以看看这篇文章《S...

SpringBoot进阶教程(六十)intellij idea project下建多个module搭建架构(上)

在IntelliJIDEA中,没有类似于Eclipse工作空间(Workspace)的概念,而是提出了Project和Module这两个概念。多module有一个父maven工程,多个子工程。在多个子工程中,可能有一个web工程,也可能有多个web工程。这样的好处在于大大解耦各个module之间的关系,我们可以把ser...

SpringBoot入门教程(十八)@value、@Import、@ImportResource、@PropertySource

SpringBoot提倡基于Java的配置。这两篇博文主要介绍springboot一些常用的注解介绍通过@Value可以将外部的值动态注入到Bean中。添加application.properties的属性,方便后面演示。domain.name=cnblogs@Value("字符串1")privateStringtes...

SpringBoot入门教程(三)通过properties实现多个数据库环境自动切换配置

前面的文章已经介绍了CentOS部署SpringBoot项目从0到1的详细过程,包括Linux安装ftp、Tomcat以及Javajdk的全部过程。这篇文章主要介绍关于springboot如何通过多个properties实现数据库环境部署时自动切换配置的两种方式,部署时切换方式和打包时Maven控制方式。关于sprin...
首页上一页...150151152153154...下一页尾页