- 浏览: 164818 次
- 性别:
- 来自: 南京
最新评论
文章列表
Spring源代码解析(一):IOC容器:http://www.iteye.com/topic/86339
Spring源代码解析(二):IoC容器在Web容器中的启动:http://www.iteye.com/topic/86594
Spring源代码解析(三):Spring JDBC:http://www.iteye.com/topic/87034
Spring源代码解析(四):Spring MVC:http://www.iteye.com/topic/87692
Spring源代码解析(五):Spring AOP获取Proxy:http://www.iteye.com/topic/ ...
明天要看的三篇文章.
- 博客分类:
- 工作笔记
http://martinfowler.com/articles/injection.html
http://static.springsource.org/spring/docs/1.2.9/reference/beans.html
http://www.tutorialspoint.com/spring/spring_required_annotation.htm
http://javatar.iteye.com/blog/1463935
http://strong-life-126-com.iteye.com/blog/806246
1. 项目右键.
2.PROPERTIES右键
3.JAVA BUILD PATH
4.ADD Libary
5.Junit.
6. OK.
http://blog.csdn.net/fullsail/article/details/4424324
有类及主方法,MAVEN BUILD 成功.
但是报selection does not contain a main type错误
查了下人家的博客:
参考这篇http://blog.csdn.net/huichengongzi/article/details/7687302
把项目重新载入.使相应的JAVA类在SRC下面.
一切正常之.
http://rdc.taobao.com/team/jm/archives/1809
ECLIPSE DEBUG MAVEN
- 博客分类:
- JAVA
1、Debugging with the Maven Jetty Plugin in Eclipse(step 1 )
导航菜单->Run->External Tools->External Tools Configurations...
Select "Program" and click the "New" button
On the "Main" tab, fill in the "Location:" as the full path to your "m ...
http://www.ibm.com/developerworks/java/library/j-jtp04223/index.html
1.建立JOB
declare
job1 number;
begin
sys.dbms_job.submit(job1,'insert_GTPV2Event;',sysdate,'sysdate+1/1440');
end;
以下中文信息摘自百度。
代理就是你的访问通过一台机器来访问网站。。你是主动的,网站是被动的,网站那里不能得到你的真实ip地址。
人 反向代理就是是网站通过一台机器发布到公网。。你访问的时候是直接访问那台代理机器的,然后通过那台机器才访问到网站。你无法得到网站的真实ip地址。这样的好处是保护了网站服务器,而且可以通过一个被动代理服务器将很多机器解析到同一ip地址。有点像路由器的端口映射。。
英文摘自
http://www.f5.com/glossary/reverse-proxy/
A reverse proxy is a device or service placed be ...
转自http://www.ibm.com/developerworks/cn/java/j-jstl0318/
JSTL 入门: 探讨 core使用定制标记进行流控制和 URL 管理
通过阅读本系列的 第一篇文章,您对 JSTL 有了初步的了解。我们描述了使用其 表达式语言(EL)来访问数据和操作数据。正如 ...
CentOS 网络配置。
- 博客分类:
- 系统
转自http://myitlife.iteye.com/blog/437372
首先通过 #ifconfig获取网卡Mac地址。然后按照步骤操作重新配置连接
linux的网卡IP地址是存放在文件中的,这个配置文件在/etc/sysconfig/network-scripts下,
名称分别为ifcfg-eth0,ifcfg-eth1....如果你有一块网卡,就只有ifcfg-eth0一个文件,如果你有两块或者两块以上的网卡,就会有ifcfg-eth1、ifcfg-eth2等文件的出现。
文件结构:
DEVICE=eth0 //指出 ...
转自http://www.shrubbery.net/solaris9ab/SUNWdev/MTP/p37.html
Signal Handlers and Async-Signal Safety
A concept similar to thread safety is Async-Signal safety. Async-Signal-Safe operations are guaranteed not to interfere with operations that are being interrupted.
The problem of Async-Signal safety ...
1.MappedSuperclass:
http://docs.oracle.com/javaee/5/api/javax/persistence/MappedSuperclass.html