自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(27)
  • 资源 (13)
  • 收藏
  • 关注

转载 Servlet含义与工作原理

(转载)http://www.cnblogs.com/6bing/p/5005951.htmlServlet servlet是用java编写服务端程序,主要功能在于交互式地浏览和修改数据,生成动态Web内容,狭义的Servlet是指java语言实现的一个接口,广义的Servlet是指任何实现了这个Servlet接口的类,一般情况下,人们将Servlet理解为后者。Servl

2016-08-25 16:33:55 453

原创 Servlet学习资料

Servlet基础(一) Servlet简介 关键API介绍及结合源码讲解Servlet基础(二) Servlet的生命周期Servlet基础(三) Servlet的多线程同步问题

2016-08-25 16:31:14 256

转载 -Dmaven.multiModuleProjectDirectory system propery is not set.

(转载)http://blog.csdn.net/sd4015700/article/details/44827327eclipse中使用maven插件的时候,运行run as maven build的时候报错-Dmaven.multiModuleProjectDirectory system propery is not set. Check $M2_HOME env

2016-08-25 14:15:36 190

转载 使用Eclipse构建Maven项目 (step-by-step)

(转载)http://blog.csdn.net/qjyong/article/details/9098213引 题Maven这个个项目管理和构建自动化工具,越来越多的开发人员使用它来管理项目中的jar包。本文仅对Eclipse中如何安装、配置和使用Maven进行了介绍。完全step by step。如果觉得本文对你有用,请移步到:http://down

2016-08-25 14:14:37 196

转载 gc overhead limit exceeded eclipse错误解决方案

(转载)http://blog.csdn.net/rain_butterfly/article/details/38224513在Eclipse打包的时候报错:gc overhead limit exceeded eclipse原因是Eclipse默认配置内存太小需要更改Eclipse安装文件夹下的eclipse.ini文件。Eclipse.ini默认文件如下:

2016-08-25 13:46:53 481

转载 JavaWeb:报错信息The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path

(转载)http://blog.csdn.net/fei20072050104/article/details/21785565JavaWeb: 报错信息The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path好久不写Jsp,今天建立了一个Javaweb工程,并在

2016-08-25 13:45:54 399

原创 eclipse Duplicate generator named “ID_GENERATOR” defined in this persistence unit

5down voteacceptedI figured the problem, it was more of an eclipse JPA validation setting. To disable:Select Window » PreferencesExpand Java Persistence » JPA » Errors/WarningsClick Qu

2016-08-23 17:08:24 3022

转载 Eclipse中配置Tomcat

(转载)http://blog.csdn.net/haojiahj/article/details/18991207Eclipse 有众多版本,最常用的包括Eclipse EE,Eclipse SE。当然还有MyEclipse等,但是MyEclipse是基于Eclipse的商业软件,因此本文不包含MyEclipse。不同版本的eclipse配置tomcat可能有所差异。1.Ec

2016-08-23 17:07:37 275

转载 关于eclipse提示:"The superclass "javax.servlet.http.HttpServlet" was not found on the Java"解决办法

(转载)http://blog.csdn.net/peade/article/details/51367783by _Json新建jsp页面老提示:Multiple annotations found at this line:  - The superclass "javax.servlet.http.HttpServlet" was not found on the

2016-08-23 17:06:45 901

转载 详解 Spring 3.0 基于 Annotation 的依赖注入实现

(转载)http://www.ibm.com/developerworks/cn/opensource/os-cn-spring-iocannt/Spring 的依赖配置方式与 Spring 框架的内核自身是松耦合设计的。然而,直到 Spring 3.0 以前,使用 XML 进行依赖配置几乎是唯一的选择。Spring 3.0 的出现改变了这一状况,它提供了一系列的针对依赖注

2016-08-23 16:00:31 415

转载 Spring配置文件详解 - applicationContext.xml文件路径

(转载)http://www.codingwhy.com/view/81.htmlspring的配置文件applicationContext.xml的默认地址在WEB-INF下,只要在web.xml中加入代码org.springframework.web.context.ContextLoaderListener    spring就会被自动加载    但在实际的开发过程中,我

2016-08-23 15:58:38 1056

转载 Spring 注解

(转载)http://www.blogjava.net/hellxoul/archive/2011/11/21/364419.html使用Spring注解注入属性本文介绍了使用Spring注解注入属性的方法。使用注解以前,注入属性通过类以及配置文件来实现。现在,注入属性可以通过引入@Autowired注解,或者@Resource,@Qualifier,@PostConstruct,

2016-08-23 15:56:20 240

转载 Spring注解@Component、@Repository、@Service、@Controller区别

(转载)http://blog.csdn.net/zhang854429783/article/details/6785574很长时间没做web项目都把以前学的那点框架知识忘光了,今天把以前做的一个项目翻出来看一下发现用·@Component标记一个组件,而网上有的用@Service标记组件,我晕就查了一下资料:Spring 2.5 中除了提供 @Component 注释外,还定义

2016-08-23 15:50:33 245

转载 Retrofit使用之自定义Converter

(转载)http://caiyao.name/2016/01/13/Retrofit%E4%BD%BF%E7%94%A8%E4%B9%8B%E8%87%AA%E5%AE%9A%E4%B9%89Converter/      Retrofit官方给了以下几个常用的转换库Gson: com.squareup.retrofit2:converter-gsonJackson: com.

2016-08-23 15:39:07 1367

转载 SpringMVC学习

(转载)http://www.cnblogs.com/ylhssn/p/4062757.html1、概述      Spring MVC是一种基于Java实现MVC设计模式的请求驱动类型的轻量级Web框架,即使用了MVC架构模式的思想,将web层进行解耦,基于请求-响应模型帮助我们简化日常web系统的开发。     Spring MVC框架就

2016-08-23 13:11:10 496

原创 Intellij和SpringBoot,gradle构建Hello world!工程

参考https://spring.io/guides/gs/spring-boot/首先下载Intellij,然后(1)新建一个工程:package com.example;import org.springframework.boot.SpringApplication;import org.s

2016-08-22 17:57:56 3984 1

原创 java2ee Spring学习计划

2016年8月19日(1)http://www.jikexueyuan.com/course/675.htmlSpring入门示例(2)http://www.jikexueyuan.com/course/665.htmlSpring入门介绍2016.8.20(1)http://www.jikexueyuan.com/course/737.htmlSpri

2016-08-19 11:36:12 678 1

原创 Databinding简单的分析ImageView属性android:src="@{resImgId}"的调用流程

首先看activity_main.xml中的代码: <variable name="resImgId" type="int"/> <variable name="click" type="org.loader.app4.MainActivi

2016-08-11 13:46:34 17304 2

转载 【Android】Retrofit网络请求Service,@Path、@Query、@QueryMap...

(转载)http://www.jianshu.com/p/7687365aa946对Retrofit已经使用了一点时间了,是时候归纳一下各种网络请求的service了。下面分为GET、POST、DELETE还有PUT的请求,说明@Path、@Query、@QueryMap、@Body、@Field的用法。初始化RetrofitString BASE_URL = "http://

2016-08-08 15:16:59 1365

原创 Databinding学习资料

https://github.com/LyndonChin/MasteringAndroidDataBinding

2016-08-04 16:19:01 633

原创 fix the wraing:Application namespace for attribute bind:xxx will be... ignored.

2016-08-04 15:45:44 4807 5

原创 Databinding使用在XML中使用&&

http://stackoverflow.com/questions/37152824/android-databinding-using-logical-operatorMy guess is that you should render && as &&.The official data binding guide has examples

2016-08-04 15:42:43 11677

转载 Android官方数据绑定框架DataBinding(二)

(转载)http://blog.csdn.net/qibin0506/article/details/47720125继续上篇的博客《Android官方数据绑定框架DataBinding(一)》我们继续学习Data Binding的使用。十、inflate 不知道大家注意没有,上面的代码我们都是在activity中通过DataBindingUtil.setContentVi

2016-08-04 14:29:19 375

转载 Android官方数据绑定框架DataBinding(一)

(转载)http://blog.csdn.net/qibin0506/article/details/47393725还记得在博客《高逼格UI-ASD(Android Support Design)》的开始曾经说过,Android最新推出了一个官方的数据绑定框架-Data Binding Library。现在github上也有很多三方的数据绑定框架,但是我们为什么要选择官方的呢?恩,答

2016-08-04 14:23:06 736

转载 Data Binding的报错集合: 例如Error:(10, 54) 错误: 程序包com.kodulf.recyclerviewdatabinding.databinding不存在

(转载)http://blog.csdn.net/rodulf/article/details/50573487报错0:找不到MainActivityBinding官网上面是:MainActivityBinding binding = DataBindingUtil.setContentView(this, R.layout.main_activity);//应该是

2016-08-04 12:47:48 3761

转载 如何查看Android系统当前发送了什么广播

(转载)http://www.voidcn.com/blog/Q316510202/article/p-5983834.html前言:在开发的时候,我们有时想知道我们定义的广播是否成功发送,或者想知道做了某个操作,系统是否会发送广播,并且发送了什么广播。如果说能够直接查看到,那是非常好的,这样就不需要google,百度,也不需要深入底层看源码。此篇文章就是告诉你这个调试的小技巧

2016-08-01 15:24:31 3797

原创 android.intent.action.DOWNLOAD_COMPLETE下载广播

可以参考一下android DownloadManager广播事件:下载完成、通知栏点击事件当监听了这个广播, android.intent.action.DOWNLOAD_COMPLETE,但是根本没有没有接收到这个广播。群里就有人发现 华为6.0不行  乐视可以接收到 。

2016-08-01 15:22:47 4272 1

dagger2依赖分析的代码

dagger2依赖分析的代码

2016-06-03

ShowPercentView

android自定义View之(六)------高仿华为荣耀3C的圆形刻度比例图(ShowPercentView),详细参考:http://blog.csdn.net/hfreeman2008/article/details/43369961 加入了注释进行了简单的封装,感谢原作者

2015-02-02

EventBusDemo

里面有eventbus的解耦使用,修改别人的例子,加上注释;也加上了roboguice的简单实用。eventbus的使用参考http://blog.csdn.net/knighttools/article/details/26608351

2014-08-04

android acra将错误日志发送到邮箱

这个使用android的开源acra将错误日志发送到邮箱中。可以成功运行,将日志发送到邮箱中。

2014-07-23

Activity切换,上入下出,防止背景黑屏

Activity切换,上入下出,防止背景黑屏

2014-06-26

base64编解码

base64进行编解码,比如可以在SMTP中使用

2013-05-18

使用telnet协议来收发邮件(SMTP和POP3)

通过这个实验对SMTP和POP3有一定了解

2013-05-18

Ubantu 虚拟机安装

详细的介绍了Ubantu的安装,按照步骤一步步的安装。

2013-05-09

Encode_+Decode+Tools+URL编码解码工具

Encode_+Decode+Tools+URL编码解码工具,非常使用的工具。

2013-04-26

网络物理接口V.24

介绍了网络接口V.24的原理和使用,其物理特性等等。可以对比接口V.35等进行学习。

2013-04-26

QT4.7移植到ARM

基于TQ6410的QT4.7移植,详细的介绍了移植到ARM开发板中的过程。

2012-10-27

精通LinuxC编程源代码

精通LinuxC编程源代码,其中有相关的Linux下C的实战项目。

2012-10-19

Linux C程序设计大全源代码

Linux C程序设计大全源代码,其中有Linux下C的实战项目。

2012-10-19

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除