`
jh108020
  • 浏览: 106416 次
  • 性别: Icon_minigender_1
  • 来自: 珠海
社区版块
存档分类
最新评论
文章列表
华为手机 打开 智慧生活 ,荣耀打开 智慧空间, 选择场景,更多里面找到“每天都要学习强国”,改一下就可以了
小新14 pro,win10,扩展坞HDMI外接显示器,识别不了。 解决办法:开机时长按电源键20s,强制关电,然后再正常按电源键开机。
1、pom里面的build加插件: <plugin><!-- 打包时自动更新文件 --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>set ...
pom引用了 <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-context</artifactId> 会使org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator无效,exclude后就好了
    最近换了个华为路由WS5200,里面有个WiFi定时关闭功能,用了一下,无效,联系上华为的技术。我跟他详细描述了使用场景(当时我就怀疑是开机时间的问题)。     一开始对方就表现的很程序员:我的东西没问题,是你不会用,跟开机时间没关系的......叭叭叭的说了几句。我就表示:很好,那我把设置清空,在他认为没问题的操作下重新设置了一遍。第二天,还是无效。     导日志给对方,2天后,跟我说,路由器开机的时候会同步时间,如果这个时间点在关闭时间段内会触发规避机制,就不会关闭wifi了,这就需要提前打开路由器才行。这就是说设置6-18点关闭的,你要在6点前打开路由器才行。     然后我问 ...
错误日志如下: [org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver] [DefaultHandlerExceptionResolver.java:447] Failed to write HTTP message: org.springframework.http.converter.HttpMessageNotWritableException: No converter found for return value of type: class xxxx 原因: 返回的对象没写get/se ...

haproxy下载和安装

下载地址: https://src.fedoraproject.org/repo/pkgs/haproxy/ http://download.openpkg.org/components/cache/haproxy/ haproxy-1.8.10.tar.gz : https://pan.baidu.com/s/1NzhZc85jxOJsx9plnXi6qQ 安装: tar -xvf haproxy-1.8.10.tar.gz make TARGET=linux2628 ARCH=x86_64 PREFIX=/usr/local/haproxy make install PREFIX=/us ...
电脑的无线wifi突然抽风了,长时间龟速,偶尔又正常,ping网关时间很长,折腾了很久,终于解决了: 把无线键盘的发射器挪到前面板 无线wifi发射器调到其他接口 改了路由器的发射频率(应该不是主因,但用手机测试,信号更好了)
Caused by: org.gradle.internal.resolve.ArtifactNotFoundException: Could not find hamcrest-core.jar (org.hamcrest:hamcrest-core:1.3). Searched in the following locations: http://xxx/repository/jcenter/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar at org.gradle.internal.resolve.result. ...

jpa实体jackson问题

org.codehaus.jackson.map.JsonMappingException: No serializer found for class org.hibernate.proxy.pojo.javassist.JavassistLazyInitializer and no properties discovered to create BeanSerializer (to avoid exception, disable SerializationConfig.Feature.FAIL_ON_EMPTY_BEANS) ) (through reference chain: java ...

java获取文件md5

public static String getFileMd5(File file) { FileInputStream in = null; try { in = new FileInputStream(file); byte[] arr = new byte[10240]; int len = 0; MessageDigest messagedigest = java.security.MessageDigest.getInstance("MD5"); while ((len = in.read(arr)) ...

Html转义

Html转义: //Html编码获取Html转义实体 function htmlEncode(value){   return $('<div/>').text(value).html(); } //Html解码获取Html实体 function htmlDecode(value){   return $('<div/>').html(value).text(); }

ubuntu源

旧版的ubuntu可以用这地址的源 http://old-releases.ubuntu.com/ubuntu 把源列表http://mirrors.xx.com/ubuntu/替换为上面的地址就行了
eclipse 4.4,原有的easyexplore插件用不了,找不到新的,所以修改原有的插件,分享一下。

VC类库冲突处理

nafxcwd.lib(afxmem.obj) : error LNK2005: "void * __cdecl operator new(unsigned int)" already defined in LIBCMTD.lib(new.obj) Debug/captureScreen.exe : fatal error LNK1169: one or more multiply defined symbols found 工程->设置->连接->分类的下拉框选择“输入”,对象/库模块 和 忽略库 都填入: nafxcwd.lib LIBCMTD.li ...
Global site tag (gtag.js) - Google Analytics