- 浏览: 86624 次
- 性别:
- 来自: 北京
最新评论
-
nc4697:
很详细,谢谢
apache shiro与spring整合、动态filterChainDefinitions、以及认证、授权 -
xiaodong*:
踩踩 学习喽 介绍一不错的博客给亲 http://jinnia ...
自学Struts2的tokenInterceptor的想法(转载)
文章列表
Java生成缩略图Thumbnailator(转载)
2012-08-14 20:09 454人阅读 评论(0) 收藏 举报
java
java压缩图片 生成缩略图
package com.util;
import java.awt.Image;import java.awt.image.BufferedImage;import java.io.File;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.IOException;
import javax.imageio.ImageIO;
import com.sun.image.codec.jpeg.JPEGCodec;import com ...
用 $.fn.tree.defaults 重写了 defaults。
依赖
draggable
droppable
用法
Tree 能在 <ul> 元素里定义,此标记可以定义为叶节点和子节点。下面是一个示例:
复制代码 代码如下:
<ul id="tt">
<li>
<span>Folder</span>
<ul>
<li>
<span>Sub Folder 1</span>
<ul>
<li>
<sp ...
struts2的s:checkbox标签如何获得后台传来的值并选中
strutsiteratoractioninteger数据库input
[java] view plaincopy
<s:iterator value="bookList" id="book">
<s:property value="name"/>
<input type="checkbox" name="bookIds" value="${book.id}" ...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<mce:style><!--
--></mce:style><style mce_bogus="1">
...
struts2的主题theme
(一)struts2中form的theme解释:
struts2中theme属性包括xhtml,html,simple,ajax 。默认是xhtml
theme:设置struts2标签的主题,默认为xhtml。
theme=xhtml时:会默认额外生成tr,td。
theme=simple时:就生成标签所对应的html标签形式。
...
Struts2标签之Checkbox详解
开发环境:eclipse3.4.2 + weblogic10.3 + jdk1.6.0_13 + Struts2.1.8 + Spring3.0.1 + Hiberante3.3.2
在Web系统或项目的开发过程中,jsp页面上经常会使用checkbox来实现用户多选的要求。
普通的写法多半是这样: ...