- 浏览: 71053 次
- 性别:
- 来自: 温州
最新评论
-
ern_me:
好文章!
框架中常用的jar包作用 (转)
文章列表
java 虚拟机设置相关
- 博客分类:
- 编程工具
http://blog.csdn.net/sully2008/article/details/6457570
Xms Xmx PermSize MaxPermSize 区别
Eclipse崩溃,错误提示:MyEclipse has detected that less than 5% of the 64MB of Perm Gen (Non-heap memory) space remains. It is strongly recommendedthat you exit and restart MyEclipse w ...
log4j基本原理详解与实战
http://www.iteye.com/topic/378077
http://vmoemplus.itpub.net/post/30809/287729
用cronolog分割tomcat的catalina.out文件 tomcat日志分割
http://john521.iteye.com/blog/1120528
Log4J配置 category, appender,layout
摘录自:http://blog.csdn.net/caolaosanahnu/article/details/6771075
1, ...
报表birt相关记录
- 博客分类:
- birt
中文文档:
http://resource.ajava.org/birt/birt-guide-zh-html-utf8/
论坛:
http://www.actuatechina.com/index.php
http://www.birthome.cn/simple/?f47.html
各种常用脚本:
http://www.birthome.cn/simple/?f47.html
BIRT Viewer 2.2 参数设置详解
http://hi.baidu.com/jchiel/blog/item/7b19003d37aa3eed3c6d9740.html#c ...
java调用存储过程简单例子:
http://www.blogjava.net/TrampEagle/archive/2005/12/13/23605.html
如何选择游标:
http://space.itpub.net/batch.viewlink.php?itemid=176913
PL/SQL里的游标可以分为显式和隐式两种,而隐式有分为select into隐式游标和for .. in 隐 ...
Struts1 框架简介(转)
- 博客分类:
- struts1
<url>http://christhb.blog.163.com/blog/static/989824920117271123910/</url>
Struts1 框架简介
2011-08-27 11:23:09| 分类: JAVA | 标签: |字号大中小 订阅
Struts1 框架简介
Struts1框架是apache公司的开源子项目,是基于mvc逻辑分层的web层框架实现。是出现最早的web层框架,应用最广发。Struts1框架重点关注的是控制层,对于视图层只是提供了大量的标签;对于model层的影响微乎其微。 S ...
几乎所有的Web开发语言都支持Session功能,Servlet也不例外。 Servlet/JSP中的Session功能是通过作用域(scope)这个概念来实现的。
作用域分为四种,分别为:
page 在当前页面有效(仅用于JSP中)
request 在当前请求中有效
session 在当前会话中有效
application 在所有应用程序中有效
是不是看不太明白?page因为仅用于JSP中,这里只讲述其他三种作用域。 首先要声明的一点,所谓“作用域”就是“信息共享的范围”,也就是说一个信息能够在多大的范围内有效。
话说武松一日来到景阳岗,见一旗帜迎风飘扬,旗 ...
struts1上传(暂记)
- 博客分类:
- struts1
异常:ClientAbortException: java.net.SocketException: Connection reset by peer: socket write error
解决办法:<a href="#" onclick="download()">在firefox中要去掉href="#"
jsp:
function download() {
loginForm.method.value="download";
loginForm.submit();
}
...
<url>http://www.java3z.com/cwbwebhome/article/article8/81208.html</url>
response.setContentType() 的作用是使客户端浏览器,区分不同种类的数据,并根据不同的MIME调用浏览器内不同的程序嵌入模块来处理相应的数据。例如web浏览器就是通过MIME 类型来判断文件是GIF图片。通过MIME类型来处理json字符串。Tomcat的安装目录\conf\web.xml 中就定义了大量MIME类型 ,你可也去看一下。 做用表单上传文件,想在服务端验证上传文件的类型,只允许上传G ...
Maven2 的常用命令 :
http://bakcom.iteye.com/blog/280604
Maven Pom.xml 元素详解
http://nomandia.iteye.com/blog/380010
maven官方地址
http://maven.apache.org/plugins/maven-eclipse-plugin/
http://maven.apache.org/plugins/
在本地库中新增包:
首先下载ojdbc14.jar这个包,然后在cmd下输入以下
mvn install:install-file -DgroupId=com.oracle -Dart ...
jpa 相关错误记录
- 博客分类:
- jpa
org.hibernate.PersistentObjectException: detached entity passed to persist
设置了主键生成方式:@GeneratedValue(strategy=GenerationType.AUTO) 就不需要再对实体类的id进行设置(mysql环境下)
使用JPA的EntityManager.persist()无法保存到数据库的问题
http://koen.iteye.com/blog/265709
我这两天刚开始使用JPA,遇到了一个问题,现象是这样的:使用EntityManager查询对象没有问题,但是持久化对象时,也就是使用 ...
dom4j 简单例子 记录
- 博客分类:
- java 基础
http://blog.csdn.net/yinbaicheng/article/details/6165037
使用json-lib
- 博客分类:
- java 基础
文档下载网站:
http://www.docjar.com
借鉴地址:
http://blog.csdn.net/jawsy/article/details/1557165
oracle 存储过程
- 博客分类:
- oracle9i
http://blog.csdn.net/success_dream/article/details/2008295
struts中<html:messages>标签的使用
http://hi.baidu.com/liulei_413/blog/item/74af4331c2a89408eac4af18.html