14:18 2014/5/5IOC inversion of control 控制反转
将new对象的权力由调用者转移到spring容器(即xml文件),Struts2与Spring整合(scope="prototype")由spring来维护struts的生命周期,在启动web容器时spring容...
分类:
其他好文 时间:
2014-05-23 05:56:11
阅读次数:
284
IOC:Inversion of Control
控制反转。(底层原理:反射)所谓的控制反转,就是应用本身不负责依赖对象的创建及维护,依赖对象的创建及维护是由外部容器负责,这样控制权就用应用内部转移到了外部容器,这样做的目的是为了获得更好的扩展性和良好的可维护性。DI:Dependency
Inje...
分类:
编程语言 时间:
2014-05-23 05:47:09
阅读次数:
317
monkeyrunnerThe monkeyrunner tool provides an API
for writing programs that control an Android device or emulator from outside of
Android code. With m...
分类:
其他好文 时间:
2014-05-23 05:27:27
阅读次数:
257
1、典型的Point结构体 1 struct point { 2 double x, y; 3
point(double _x = 0, double _y = 0): x(_x), y(_y) { 4 } 5 void input() { 6
sca...
分类:
其他好文 时间:
2014-05-23 03:40:15
阅读次数:
362
格式:
mount -t cifs //IP/share-folder /mnt-point -o username=your-username,passwd=your-password
[root@client mnt]# mount -t cifs //192.168.230.1/f /mnt/share/ -o username=***,passwd=***
[root@clien...
using System;using System.Collections.Generic;using
System.Linq;using System.Web;using System.Web.Mvc;using
System.Web.Security;namespace 验证权限.Control...
分类:
Web程序 时间:
2014-05-22 15:36:02
阅读次数:
264
在Xcode中创建项目时会弹出Source Control选项,勾选Create git
repository选项可以帮助我们对照以前项目中代码中修改的部分,为开发提供方便。在项目完成到一定程度时,点击屏幕上方Source
Control选项,然后点击commit选项,会弹出一个窗口在Enter c...
分类:
其他好文 时间:
2014-05-22 15:03:33
阅读次数:
260
注册表法window+R
---》输入regedit(点击确定后进入注册表编辑器)需要修改以下两个地方,重启电脑生效:[HKEY_CURRENT_USER\Control
Panel\Colors] "Window"="202 234 206" [HKEY_LOCAL_MACHINE\SOFTWA....
#include
#include
using namespace std;
class Point
{
public:
Point(double a,double b):x(a),y(b) {}
double getx()
{
return x;
}
double gety()
{
...
分类:
其他好文 时间:
2014-05-21 14:44:07
阅读次数:
281