摘要:
从自己学习java网站发现的一个java从基... 阅读全文
摘要:
字符串转数组 str = '1,2,3' arr = str.split(',') 数组转字符串 arr = ['a','b'] str = ','.join(arr) arr = [1,2,3] str = ','.join(str(i) for i in b) 阅读全文
摘要:
Spring配置文件: applicationContext.xml applicationContext.xml是Spring的核心配置文件 IOC/DI,AOP相关配置都是在这个文件中 SpringMVC配置文件: springmvc servlet.xml 视图定位,资源访问相关配置,serv 阅读全文
摘要:
Spring配置文件: applicatio... 阅读全文
摘要:
Spring配置文件: applicatio... 阅读全文
摘要:
GPUImage是iOS上一个基于OpenGL进行图像处理的开源框架,内置大量滤镜,架构灵活,可以在其基础上很轻松地实现各种图像处理功能。 GPUImgae特性 1,丰富的输入组件 摄像头、图片、视频、OpenGL纹理、二进制数据、UIElement(UIView, CALayer) 2,大量现成的 阅读全文
摘要:
iOS图形处理概论:OpenGL ES,Metal,Core Graphics,Core Image,GPUImage,Scene Kit (3D) ,Sprite Kit (2D),OpenCV iOS与图形图像处理相关的框架都在这里了: 界面图形框架 UIKit 核心动画框架 Core Anim 阅读全文
摘要:
Session/Cookie是对HTTP协议无状态的补偿。 1,Cookie Cookie主要用来记录用户的状态,区分用户;Cookie保存在客户端 客户端发送的Cookie在http请求报文的Cookie首部字段中;服务器设置http报文的set cookie首部字段。 2,怎样修改Cookie? 阅读全文
摘要:
Mybatis基本原理 1. 应用程序找Mybatis要数据 2. mybatis从数据库中找来数据 2.1 通过mybatis config.xml 定位哪个数据库 2.2 通过Category.xml执行对应的select语句 2.3 基于Category.xml把返回的数据库记录封装在Cate 阅读全文
摘要:
@Autowired @Resource @Component:类加上@Component注解,即表明此类是bean @Aspect 注解表示这是一个切面 @Around(value = "execution( xxx.ProductService. (..))") 表示对xxx.ProductSe 阅读全文