- 博客(717)
- 资源 (37)
- 问答 (1)
- 收藏
- 关注

原创 设计模式
java设计模式应用汇总单例模式 http://blog.youkuaiyun.com/id19870510/article/details/79094771策略模式 Android SDK开发 – TitleBar重构 - 使用策略模式、舍弃代理模式 http://blog.youkuaiyun.com/id19870510/article/details/50902844策略模式与命令模式的区别 h
2018-01-16 10:08:52
365

原创 https协议应用
一、入门、讲解tomcat中如何配置https https 协议 -- tomcat配置二配置tomcat, 把所有的http请求都转发到https tomcat 转发http请求到https3、解决浏览器 - “您的连接不是私密连接“
2016-11-27 13:10:43
890

原创 Android 知识点汇总
这里主要记录Android里一些需要记忆的知识点和用法总结属性动画ObjectAnimator 移动ObjectAnimator anim = ObjectAnimator.ofFloat(view, "translationY", 500f);anim.setDuration(0);// 正式开始启动执行动画anim.start();translationY 或者 tr
2016-11-16 10:35:46
602

原创 重新编译jt.jar
文章转自http://www.cnblogs.com/zjrodger/p/5110538.html解决Debug JDK source 无法查看局部变量的问题方案(重新编译rt.jar包)一.问题阐述 首先我们要明白JDK source为什么在debug的时候无法观察局部变量,因为在jdk中,sun对rt.jar中的类编译时,去除了调试信息,这样在ecl
2016-03-13 19:49:35
1786

原创 Android sdk开发 - 序
序文档是写给自己的。不过也欢迎对SDK开发感兴趣的朋友阅读。 阅读本文档需要一定的Java开发基础,面向对象的设计思想,以及Java反射、注解等高级应用。另外需要Android开发基础,如果还具备代码重构能力那就更好不过了。 文档中用于演示的工程packageName为 phoebe.frame.lib工程源码位于https://github.com/droidc
2015-12-21 23:10:10
1483
原创 Cannot resolve plugin org.apache.maven.plugins:maven-resources-plugin:2.6
记录一个bug今天在idea maven代码的时候 一直报这个错解决办法右击工程 打开settings.xml 看看里面有木有错误。有的话 解决一下就好。我的settings.xml 在网上拷贝的aliyun的镜像导致多了许多空格。然后报错Element ‘dependencies’ cannot have character[children],because the type’s content type is elemen结局办法。把<标签>前后多余的空格删掉。然后重
2020-07-13 22:15:26
4159
1
原创 xcode 9 UIWebView加载http 报错
xcode9 默认只能加载https协议的网址报错App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file.解决...
2019-08-08 18:09:37
603
原创 vmware 15 安装mac 10.14无法复制
安装vmware tools 也不行 ,只能通过本方法直接输ip就行了,不用加前缀(ipconfig看一下宿主win10的ip、然后可以看到宿主的共享文件夹)
2019-08-05 23:12:56
1143
原创 vmware 15 安装 mac 10.14解决无法全屏
1、下载 mac cdr2、安装设置全屏执行命令 csrutil disable执行的时候会报错、需要在
2019-08-05 23:08:41
3789
1
原创 ThreadPoolExecutor参数详解
public ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, ...
2019-02-01 16:58:59
1627
1
原创 spring cloud之 config配置刷新
有两种刷新方式1、http;//host:项目端口/项目上下文路径/refresh2、http;//host:config端口/config上下文路径/config management-上下文路径/bus/refresh
2019-02-01 16:43:08
444
原创 windows 安装paramiko
1、下载编译好的pycrypto http://www.voidspace.org.uk/python/modules.shtml#pycrypto 2、下载paramiko源码 本地编译 https://pypi.org/project/paramiko/#files 执行命令python setup.py build && python setup.py i...
2018-07-28 11:18:41
1530
原创 jmeter JDBC性能测试
1、添加JDBC的jar 2、添加–配置元件–JDBC Connection Configuration 3、新建一个线程组(略) 4、右击线程组–添加-sampler-JDBC request 5、添加监听器查看统计结果(略) 右击–添加-监听器-xxx ...
2018-07-23 16:37:57
1028
原创 jmeter --- http接口测试
1、新建一个测试计划 2、新建一个线程组 3、新建http请求默认值 4、HTTP信息头管理器 5、聚合报告 6、察看结果树
2018-07-23 13:50:14
451
原创 Springboot 动态刷新的几点注意
1、bootstrap.yml中的配置属性 无法动态刷新 只能添加在application.yml中 2、需要在调用的地方添加@RefreshScope、不能只在Application上添加 3 、需要引入依赖 <dependency> <groupId>org.springframework.boot</groupId> <a...
2018-05-07 14:10:52
8086
原创 Value '' can not be represented as java.sql.Timestamp
org.springframework.dao.TransientDataAccessResourceException: Error attempting to get column 'update_date' from result set. Cause: java.sql.SQLException: Value '' can not be represented as java.sql.T...
2018-04-26 15:16:18
2633
原创 redis和session共享同时使用 报错
reids报错/** * 注意如果 JedisConnectionFactory与JedisPool一起使用会报错<br/> * * @return */ @Bean @Order(2) // @ConfigurationProperties(prefix = "spring.redis") public...
2018-03-24 16:01:42
1473
原创 SpringBoot Bean加载顺序 Order无效
@Bean @Order(1) public xxx1 createXxx1() { return new xxx1(); } @Bean @Order(2) public xxx2 createXxx2() { return new xxx2(); }经过测试 ,病不起作用。 目前经过测试、O...
2018-03-24 14:34:57
12015
13
原创 tk mapper 通用mapper的bug
<bean class="tk.mybatis.spring.mapper.MapperScannerConfigurer"> <property name="basePackage" value="com.isea533.mybatis.mapper"/> <property name="properties"
2018-03-14 12:42:42
7025
5
原创 springboot 对404的处理
默认情况下发送一个不存在的请求、该请求会转发到/${context-path}/error 并且不会被ControllerAdvice拦截2018-03-06 10:30:20.969 WARN [http-nio-9090-exec-5] - No mapping found for HTTP request with URI [/oa/appmanager/queryList] in ...
2018-03-06 15:05:16
3622
原创 Unable to start EmbeddedWebApplicationContext due to missing EmbeddedServletContainerFactory bean
<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.or
2018-03-04 16:46:30
1475
原创 springboot读取配置文件
在bootstrapt.yml文件中配置spring: profiles: active: - test include: - config1, config2除了会加载application.yml 还会加载 ??? application-test.yml application-config1.yml application-config2....
2018-03-02 17:02:20
792
原创 spring aop的两种使用方式
@Aspect// @Order(-1) // 保证切换数据源在@Transactional之前执行 ,因为实现了Ordered 接口, 所以可以不需要注解@Componentpublic class DataSourceAdvice implements MethodBeforeAdvice, AfterReturningAdvice, ThrowsAdvice, Ordered { ...
2018-03-02 15:41:22
754
原创 eclipse 导入整个spring boot源码
1、先创建一个maven projectC:\Users\coffee\OneDrive\workspace\spring.boot-git2、把https://github.com/spring-projects/spring-boot/tree/1.5.x 下载下来的工程解压 直接从eclipse中复制。并且覆盖pom.xml 3、右击 工程 import ...
2018-03-02 14:04:59
6457
原创 springboot 记录一次源码编译过程的纠错
C:\Users\coffee\OneDrive\git\spring-boot-1.5.10\spring.boot>mvn clean install -Dmaven.test.skip=true[INFO] Scanning for projects...[ERROR] [ERROR] Some problems were encountered while processing ...
2018-02-27 11:25:13
2598
2
原创 spring boot EnableAutoConfiguration exclude 无效
首先讲一下SpringBootApplication注解 源码定义为@Target(ElementType.TYPE)@Retention(RetentionPolicy.RUNTIME)@Documented@Inherited@SpringBootConfiguration@EnableAutoConfiguration@ComponentScan(excludeFilter...
2018-02-26 09:31:45
10549
5
原创 mysql 5.7.21 免安装版配置
跟5.7.20不同 http://blog.youkuaiyun.com/id19870510/article/details/79063586 创建一个my.ini文件放在mysql的跟目录[mysql] # 设置mysql客户端默认字符集 default-character-set=utf8 [mysqld] #设置3306端口 port = 3306 # 设置mysql的安装目录...
2018-02-25 08:49:06
454
原创 servlet匹配过程核心代码
一个http请求 如何匹配到具体的servletpackage org.apache.catalina.mapper;public final class Mapper { /** * Extension mappings. * * @param wrappers Set of wrappers to check for matches ...
2018-02-19 10:19:00
682
原创 tomcat源码 -- servlet调用过程
servlet调用public class Http11Processor extends AbstractProcessor { @Override public SocketState service(SocketWrapperBase<?> socketWrapper) throws IOException {。。。。。 // Proce...
2018-02-18 18:10:20
964
原创 用项目运行在自己编译好的tomcat服务器上
右击项目 run on server 然后选择新建一个项目 Unknown version of Tomcat was specified报错、、、、最开始以为 执行的是bin目录下的version.bat 然后按照version.bat报的错解决错误,最后发现不行 然后对比了一下 源码版tomcat和免安装版tomcat 缺少一个lib目录然后把lib目录拷贝到C:\wo...
2018-02-12 10:31:42
1284
原创 tomcat 8.5 源码编译 --- maven方式
官方自带的是ant编译、这玩意不太懂 不捣鼓了解压下载的源码包 目录结构大致如下javatestbinconfmodulesrestargetwebappsbuild.properties.defaultbuild.xmlBUILDING.txtCONTRIBUTING.mdKEYSLICENSEMERGE.txtNOTICEREADME.mdRELEAS...
2018-02-12 09:25:14
2354
原创 java.util.zip.ZipException: invalid LOC header
这个问题网上一搜一大堆 都说jar有问题问题是怎么找出有问题的jar 我这里记录一下我的解决办法 maven install的时候 仔细看log 会提示有问题jar 按照路径删掉jar 以后 重新install[WARNING] 读取C:\Users\coffee\.m2\repository\com\github\fernandospr\javapns-jdk16\2.3.1\j...
2018-02-10 11:39:06
1222
原创 Can not construct instance of java.util.LinkedHashMap: no String-argument constructor/factory method
出现这个问题是由于 参数传入的是一个String类型 无法转换为Map$.ajax({ type:'POST', url:hostUrl, dataType:'json', contentType:'application/json', async:fa...
2018-02-09 11:15:11
23795
原创 spring boot上传文件 The temporary upload location is not valid
Caused by: java.io.IOException: The temporary upload location [C:\Users\coffee\AppData\Local\Temp\tomcat.8572785615189560421.9999\work\Tomcat\localhost\ROOT] is not valid at org.apache.catalina.co...
2018-02-08 16:57:00
6736
1
原创 调用feign请求超时 feign.RetryableException: Read timed out executing POST
feign.RetryableException: Read timed out executing POST http://xxx at feign.FeignException.errorExecuting(FeignException.java:67) at feign.SynchronousMethodHandler.executeAndDecode(Synchronous
2018-02-04 14:36:28
23943
2
原创 FeignClient调试404 feign.FeignException: status 404 reading
先说一下源码 调用Feign服务的时候 执行的核心代码如下package feign;.......//省略import/** * Submits HTTP {@link Request requests}. Implementations are expected to be thread-safe. */public interface Client { /**
2018-02-03 19:38:27
28764
2
原创 spring bean 动态创建、核心类ApplicationContext 、AutowireCapableBeanFactory
public class SpringBeanUtil implements ApplicationContextAware { @Autowired private static ApplicationContext context = null; private Bean1 bean1; private Bean2 bean2; public vo...
2018-01-30 14:31:33
1043
原创 com.netflix.zuul.exception.ZuulException: Forwarding error
解决办法hystrix: command: default: execution: isolation: thread: timeoutInMilliseconds: 60000 ribbon: ReadTimeout: 60000 ConnectTimeout: 60000 zuu
2018-01-30 11:24:40
10730
原创 spring boot源码学习 SpringApplication(二)-Banner
先说一下 banner相关的配置属性#spring.main.bannerMode=off # 关闭banner打印#banner.location=coffee.banne # 设置banner文本文件的位置 、相对于src/main/resources#banner.image.location=11111.jpg #设置图片、打印的时候会乱码代码中的用法Banner prin
2018-01-28 16:50:29
422
freetts-1.2-2.zip
2020-08-23
javax-persistence-api 1.2 src
2010-12-22
Database Porgramming With Jdbc And Java
2010-11-04
Apress.Building.Portals.with.the.Java.Portlet.API.Aug.2004.pdf
2010-06-23
Sql Server 2000 的JDBC 驱动 jar
2010-03-08
android 蓝牙 配对、连接 聊天程序, 绝对可用
2011-10-24
iphone开发环境 windows篇之 cygwin + toolschain
2011-05-19
Json 相关的jar
2011-04-21
ios开发者后台如何删除 Identifiers
2019-09-11
TA创建的收藏夹 TA关注的收藏夹
TA关注的人