上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 50 下一页
摘要: IoC是一个很大的概念,可以用不同的方式实现。其主要形式有两种: ◇ 依赖查找:容器提供回调接口和上下文条件给组件。EJB和Apache Avalon 都使用这种方式。这样一来,组件就必须使用容器提供的API来查找资源和协作对象,仅有的控制反转只体现在那些回调方法上(也就是上面所说的 类型1):容器 阅读全文
posted @ 2018-09-05 10:14 borter 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 现有的框架实际上使用以下三种基本技术的框架执行服务和部件间的绑定: 类型1 (基于接口): 可服务的对象需要实现一个专门的接口,该接口提供了一个对象,可以从用这个对象查找依赖(其它服务)。早期的容器Excalibur使用这种模式。 类型2 (基于setter): 通过JavaBean的属性(sett 阅读全文
posted @ 2018-09-05 10:12 borter 阅读(130) 评论(0) 推荐(0) 编辑
摘要: IoC最大的好处是什么?因为把对象生成放在了XML里定义,所以当我们需要换一个实现子类将会变成很简单(一般这样的对象都是实现于某种接口的),只要修改XML就可以了,这样我们甚至可以实现对象的热插拨(有点象USB接口和SCSI硬盘了)。 IoC最大的缺点是什么?(1)生成一个对象的步骤变复杂了(事实上 阅读全文
posted @ 2018-09-05 10:10 borter 阅读(454) 评论(0) 推荐(0) 编辑
摘要: IOC关注服务(或应用程序部件)是如何定义的以及他们应该如何定位他们依赖的其它服务。通常,通过一个容器或定位框架来获得定义和定位的分离,容器或定位框架负责: 保存可用服务的集合 提供一种方式将各种部件与它们依赖的服务绑定在一起 为应用程序代码提供一种方式来请求已配置的对象(例如,一个所有依赖都满足的 阅读全文
posted @ 2018-09-05 10:10 borter 阅读(162) 评论(0) 推荐(0) 编辑
摘要: IoC就是IoC,不是什么技术,与GoF一样,是一种 设计模式。 Interface Driven Design接口驱动,接口驱动有很多好处,可以提供不同灵活的子类实现,增加代码稳定和健壮性等等,但是接口一定是需要实现的,也就是如下语句迟早要执行:AInterface a = new AInterf 阅读全文
posted @ 2018-09-05 10:09 borter 阅读(1239) 评论(0) 推荐(0) 编辑
摘要: 早在2004年,Martin Fowler就提出了“哪些方面的控制被反转了?”这个问题。他总结出是依赖对象的获得被反转了。基于这个结论,他为控制反转创造了一个更好的名字:依赖注入。许多非凡的应用(比HelloWorld.java更加优美,更加复杂)都是由两个或是更多的类通过彼此的合作来实现业务逻辑, 阅读全文
posted @ 2018-09-05 10:08 borter 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 一:这里先说一下DI(Dependency Injection)依赖注入有种表现形式:一种是CI(Constructor Injection)构造方法注入,另一种是SI(Set Injection) set 注入。这篇随笔讲的是第一种构造方法注入(Constructor Injection). 其实 阅读全文
posted @ 2018-09-05 10:07 borter 阅读(490) 评论(0) 推荐(0) 编辑
摘要: IOC 是什么? Ioc—Inversion of Control,即“控制反转”,不是什么技术,而是一种设计思想。在Java开发中,Ioc意味着将你设计好的对象交给容器控制,而不是传统的在你的对象内部直接控制。如何理解好Ioc呢?理解好Ioc的关键是要明确“谁控制谁,控制什么,为何是反转(有反转就 阅读全文
posted @ 2018-09-05 10:04 borter 阅读(443) 评论(0) 推荐(0) 编辑
摘要: 学习整理 饱汉模式(懒汉模式) 优点:懒加载启动快,资源占用小,使用时才实例化,无锁。 缺点:非线程安全。 饱汉模式(懒汉模式)--线程安全 优点:同上,但加锁了。 缺点:synchronized 为独占排他锁,并发性能差。即使在创建成功以后,获取实例仍然是串行化操作。 饱汉模式(懒汉模式)--双重 阅读全文
posted @ 2018-09-05 09:44 borter 阅读(243) 评论(0) 推荐(0) 编辑
摘要: AOP AOP(Aspect Oriented Programming),即面向切面编程,可以说是OOP(Object Oriented Programming,面向对象编程)的补充和完善。OOP引入封装、继承、多态等概念来建立一种对象层次结构,用于模拟公共行为的一个集合。不过OOP允许开发者定义纵 阅读全文
posted @ 2018-09-05 09:40 borter 阅读(1538) 评论(0) 推荐(0) 编辑
摘要: AOP称为面向切面编程,在程序开发中主要用来解决一些系统层面上的问题,比如日志,事务,权限等待,Struts2的拦截器设计就是基于AOP的思想,是个比较经典的例子。 一 AOP的基本概念 (1)Aspect(切面):通常是一个类,里面可以定义切入点和通知 (2)JointPoint(连接点):程序执 阅读全文
posted @ 2018-09-05 09:35 borter 阅读(1003) 评论(0) 推荐(0) 编辑
摘要: ioc:控制反转(Inversion of Control,英文缩写为IoC)把创建对象的权利交给框架,是框架的重要特征,并非面向对象编程的专用术语。它包括依赖注入(Dependency Injection,简称DI)和依赖查找(Dependency Lookup)。 优点:因为把对象生成放在了XM 阅读全文
posted @ 2018-09-05 09:34 borter 阅读(417) 评论(0) 推荐(1) 编辑
摘要: 概念: java中单例模式是一种常见的设计模式,单例模式的写法有好几种,这里主要介绍三种:懒汉式单例、饿汉式单例、登记式单例。 单例模式有以下特点: 1、单例类只能有一个实例。 2、单例类必须自己创建自己的唯一实例。 3、单例类必须给所有其他对象提供这一实例。 单例模式确保某个类只有一个实例,而且自 阅读全文
posted @ 2018-09-04 13:43 borter 阅读(150) 评论(0) 推荐(0) 编辑
摘要: ENC的概念: The application component environment is referred to as the ENC, the enterprise naming context. 应用组件的业务逻辑应该是 ENC中取得对象。组件提供者使用标准的部署描述符指定必需的ENC入 阅读全文
posted @ 2018-09-03 14:14 borter 阅读(928) 评论(0) 推荐(0) 编辑
摘要: 今天,学习用了一下nutz框架,写了一个HelloWorld的小程序,在用jndi配置数据源时,写了一个测试类,并在main方法中调用了jndi获得数据库连接,但是报错了,错误信息如下: javax.naming.NoInitialContextException: Need to specify 阅读全文
posted @ 2018-09-03 14:10 borter 阅读(1562) 评论(0) 推荐(0) 编辑
摘要: 1. 首先,需要为数据源配置一个JNDI资源。我们的数据源JNDI资源应该定义在context元素中。在tomcat6版本中,context元素已经从server.xml文件中独立出来了,放在一个context.xml文件中。因为server.xml是不可动态重加载的资源,服务器一旦启动了以后,要修 阅读全文
posted @ 2018-09-03 14:08 borter 阅读(8579) 评论(0) 推荐(1) 编辑
摘要: This example demonstrates how to set a clipping area using a shape. The example sets an oval for the clipping area and then draws and image. Only thos 阅读全文
posted @ 2018-09-02 22:02 borter 阅读(155) 评论(0) 推荐(0) 编辑
摘要: This example demonstrates how to convert between a color value in RGB (three integer values in the range 0 to 255 representing red, green, and blue) a 阅读全文
posted @ 2018-09-02 22:02 borter 阅读(142) 评论(0) 推荐(0) 编辑
摘要: To draw on the screen, it is first necessary to subclass a JComponent and override its paint() method. The paint() method is automatically called by t 阅读全文
posted @ 2018-09-02 22:01 borter 阅读(151) 评论(0) 推荐(0) 编辑
摘要: This is the simplest application to animate an array of images. 阅读全文
posted @ 2018-09-02 22:00 borter 阅读(108) 评论(0) 推荐(0) 编辑
摘要: // See e575 The Quintessential Drawing Program public void paint(Graphics g) { // Retrieve the graphics context; this object is used to paint shapes Graphics2D g2d = (Graphics2D)g;... 阅读全文
posted @ 2018-09-02 22:00 borter 阅读(134) 评论(0) 推荐(0) 编辑
摘要: The print dialog allows the user to change the default printer settings such as the default printer, number of copies, range of pages, etc. 阅读全文
posted @ 2018-09-02 21:58 borter 阅读(137) 评论(0) 推荐(0) 编辑
摘要: PrinterJob pjob = PrinterJob.getPrinterJob(); PageFormat pf = pjob.defaultPage(); if (portrait) { pf.setOrientation(PageFormat.PORTRAIT); } else { pf.setOrientation(... 阅读全文
posted @ 2018-09-02 21:58 borter 阅读(328) 评论(0) 推荐(0) 编辑
摘要: A Book object is used when printing pages with different page formats. This example prints the first page in landscape and five more pages in portrait 阅读全文
posted @ 2018-09-02 21:57 borter 阅读(235) 评论(0) 推荐(0) 编辑
摘要: Note that (0, 0) of the Graphics object is at the top-left of the actual page, which is outside the printable area. 阅读全文
posted @ 2018-09-02 21:56 borter 阅读(267) 评论(0) 推荐(0) 编辑
摘要: The page format dialog allows the user to change the default page format values such as the orientation and paper size. 阅读全文
posted @ 2018-09-02 21:55 borter 阅读(290) 评论(0) 推荐(0) 编辑
摘要: Note that (0, 0) of the Graphics object is at the top-left of the actual page, outside the printable area. In this example, the Graphics object is tra 阅读全文
posted @ 2018-09-02 21:55 borter 阅读(220) 评论(0) 推荐(0) 编辑
摘要: Images in accelerated memory are much faster to draw on the screen. This example demonstrates how to take an image and make an accelerated copy of it 阅读全文
posted @ 2018-09-02 21:54 borter 阅读(181) 评论(0) 推荐(0) 编辑
摘要: This example demonstrates a 3x3 kernel that sharpens an image. 阅读全文
posted @ 2018-09-02 21:53 borter 阅读(240) 评论(0) 推荐(0) 编辑
摘要: ColorSpace cs = ColorSpace.getInstance(ColorSpace.CS_GRAY); ColorConvertOp op = new ColorConvertOp(cs, null); bufferedImage = op.filter(bufferedImage, null); Related Examples 阅读全文
posted @ 2018-09-02 21:53 borter 阅读(249) 评论(0) 推荐(0) 编辑
摘要: This example demonstrates how to convert a byte array of pixel values that are indices to a color table into a BufferedImage. In particular, the examp 阅读全文
posted @ 2018-09-02 21:52 borter 阅读(192) 评论(0) 推荐(0) 编辑
摘要: // Get a pixel int rgb = bufferedImage.getRGB(x, y); // Get all the pixels int w = bufferedImage.getWidth(null); int h = bufferedImage.getHeight(null); int[] rgbs = new ... 阅读全文
posted @ 2018-09-02 21:51 borter 阅读(267) 评论(0) 推荐(0) 编辑
摘要: This example demonstrates how to convert a byte array of pixel values that are indices to a color table into an Image. In particular, the example gene 阅读全文
posted @ 2018-09-02 21:51 borter 阅读(135) 评论(0) 推荐(0) 编辑
摘要: An Image object cannot be converted to a BufferedImage object. The closest equivalent is to create a buffered image and then draw the image on the buf 阅读全文
posted @ 2018-09-02 21:50 borter 阅读(147) 评论(0) 推荐(0) 编辑
摘要: This example demonstrates a 3x3 kernel that blurs an image. 阅读全文
posted @ 2018-09-02 21:50 borter 阅读(183) 评论(0) 推荐(0) 编辑
摘要: // This method returns true if the specified image has transparent pixels public static boolean hasAlpha(Image image) { // If buffered image, the color model is readily available ... 阅读全文
posted @ 2018-09-02 21:49 borter 阅读(167) 评论(0) 推荐(0) 编辑
摘要: // This method returns the color model of an image public static ColorModel getColorModel(Image image) { // If buffered image, the color model is readily available if (image instan... 阅读全文
posted @ 2018-09-02 21:48 borter 阅读(153) 评论(0) 推荐(0) 编辑
摘要: A IndexColorModel is used to represent the color table of a GIF image. 阅读全文
posted @ 2018-09-02 21:48 borter 阅读(120) 评论(0) 推荐(0) 编辑
摘要: Images in accelerated memory are much faster to draw on the screen. However, accelerated memory is typically limited and it is usually necessary for a 阅读全文
posted @ 2018-09-02 21:48 borter 阅读(125) 评论(0) 推荐(0) 编辑
摘要: // To create a buffered image, see e666 创建缓冲图像 // Flip the image vertically AffineTransform tx = AffineTransform.getScaleInstance(1, -1); tx.translate(0, -image.getHeight(null)); ... 阅读全文
posted @ 2018-09-02 21:47 borter 阅读(151) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 50 下一页