
j2ee
cofesun
这个作者很懒,什么都没留下…
展开
-
Tomcat无法访问问题
tomcat7,eclipse,系统:win7遇到的问题:在tomcat7的bin文件夹中用startup.bat启动,正常,但是用http://localhost:8080不能访问,用http://127.0.0.1:8080可以访问,eclipse中启动出现错误。查询到的可能的解决方法:1.有人说关闭IPV6,或者卸载,此方法未成功2.查看是否有程序占用8080端口(用netsta原创 2012-07-16 23:03:07 · 894 阅读 · 0 评论 -
eclipse中 tomcat启动出现servler/** load() class exception的异常
启动tomcat服务器时候出现load()class的异常,问题根源看实际情况,最容易疏忽的是:1.导入架包不完全的原因2.web.xml错误的原因原创 2012-07-17 21:32:43 · 1337 阅读 · 0 评论 -
初学Spring必须弄懂的几个知识点
一. spring的关键在于它的AOP和IOC,所以首先要弄懂AOP和IOC的原理,深入理解了这两方面才算是入门了。1.IoC(Inversion of control): 控制反转 (将以前我们在代码中new的工作交给了spring容器)概念:控制权由对象本身转向容器;由容器根据配置文件去创建实例并创建各个实例之间的依赖关系 核心:bean工厂;在Spring中,bean工厂创建的原创 2012-07-27 15:59:59 · 6664 阅读 · 0 评论 -
spring3 MVC+jquery+ajax+annotations
Its always been fun for me to work with Ajax! Is not it ? I will make it easy for you to use Ajax with Spring MVC 3 and JQuery. This post will illustrate you how to use Ajax in real life practices转载 2012-09-06 11:18:28 · 5133 阅读 · 0 评论 -
推荐两个UI、PSD文件搜索网站
来自:http://www.admin10000.com/document/945.html下面推荐两个UI、PSD文件搜索网站,它们的界面都非常简单,且功能强大。搜索时注意关键字的选择比如 button、icon、player、apple、iphone、google、windows 等等这些。psdhunter ui-cloud转载 2012-09-11 13:16:45 · 837 阅读 · 0 评论 -
JAVA线程池:ThreadPoolExecutor
简单例子 import java.util.concurrent.Executors;import java.util.concurrent.ExecutorService;public class JavaThreadPool { public static void main(String[] args) { // 创建一个可重用固定线程数的线程池 Execu转载 2012-10-11 13:45:21 · 650 阅读 · 0 评论