ICode9

精准搜索请尝试: 精确搜索
  • 扒一扒Profiler中这几个“占坑鬼”(复制于UWA)2019-07-08 15:03:19

    WaitForTargetFPS、Gfx.WaitForPresent 和 Graphics.PresentAndSync是我们经常会被问到的参数。想必正在读此文的你也经常在Profiler中遇到过这几项CPU开销过大的情况。对此,我们今天就来好好地聊一聊这几个参数的具体含义和触发规则。 WaitForTargetFPS 该参数一般出现在CPU开

  • springmvc4.3.7中使用RequestBody,传入json参数时,得到错误415 Unsupported Media Type2019-06-24 11:01:03

    在新建一个maven的项目的时候,当时并非springboot项目,是通过xml来配置的项目。在项目中DispatcherServlet的配置文件中配置了annotation-driven的, <?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="ht

  • 分页2019-06-22 20:00:55

    分页show.jsp <%--分页操作<a href="serlect_all?pageindex=${pu.present_page_num>1?pu.present_page_num-1:1}">上一页</a><c:forEach var="i" begin="1" end="${pu.total_page_num}"> <a href="serlec

  • Java HashSet使用2019-06-01 22:03:25

    HashSet底层使用HashMap实现。当使用add方法将对象添加到Set当中时,实际上是将该对象作为底层所维护的Map对象的key,而value则都是同一个Object对象(该对象我们用不上)。 1、 HashSet的构造函数   2、HashSet的add方法,  其中PRESENT是一个假的对象 // Dummy value to associat

  • yii webservice 提示:Procedure 'getSent' not present 错误的解决方法(转)2019-05-31 13:02:01

    其实根据常用的webservice清除缓存方法,在client端加入这样一句话:ini_set("soap.wsdl_cache_enabled", "0");应该就可以了,但是处理了好久,在本地测试没问题,放到服务器上就不行,一直提示:Procedure 'getSent' not present后来查看PHP的配置文件php.ini,找到这样一句话: soap.wsdl_cache_di

  • SpringMVC Required request part 'file' is not present2019-02-23 16:03:21

    Required request part ‘file’ is not present 环境:springmvc-4.x ​ tomcat7.9 ​ idea 2017 ​ jdk 1.8 错误提示:Required request part ‘file’ is not present 遇到这种问题一般情况下都是参数未对应上,但是在我本次处的问题却

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有