- 浏览: 253024 次
- 性别:
- 来自: 湖南
最新评论
-
lianlupengUestc:
From my testing (Struts2 versio ...
struts2 注解 -
yulongxiang:
非常感谢!!!!!!!
使用动态ActionForm(转)
文章列表
var str="";
$("[name='choose'][checked]").each(function(){
str+=$(this).val()+"\r\n";
})
alert(str);
需求一:
数据库中存储有一段带html标签的文字,如:
<P>《Windows》系统是越用越慢,这是不争的事实。</P> <P>因此,使用Win<font size='12pt'>d</font>ows就免不<img src='http:/www.blueidea.com/img/common/logo.gif'/>了要重新安装系统。<br>当然<span style='border:solid 1px red;font-size:23px'>,重新安装系</span>统并不难,但是安 ...
s = s.replaceAll("(\\<\\w+\\s*)[^\\>]*", "$1")
var str = "<span style='display:none;'>清除了格式</span><img src=''></img><strong></strong><br/>";
str = str.replace(/<[^>].*?>/g,"");
alert(str);
防止图片和文字将表格撑大
- 博客分类:
- HTML/css
可以做到既防止表格/层撑破又防止单词断裂了。
如下:
代码
table {
table-layout: fixed;
word-wrap:break-word;
}
div {
word-wrap:break-word;
}
下面的是将超出范围的字省略?
<table width="200" border="1" style="table-layout: fixed;">
<tr>
<td style="overflow: hidden; white-space ...
package com.hugui.qq.web.action.article;
import java.awt.Image;
import java.awt.image.BufferedImage;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
im ...
检索单个对象
Query和Criteria都提供了返回单个对象的方法uniqueResult().
先调用setMaxResult(1)方法,把最大检索数目设为1,在调用uniqueResult()方法。
Hx hx = (Hx)session.createQuery("from Hx")
.setMaxResults(1)
.uniqueResult();
Hx hx = (Hx)session.createCriteria(Hx.class)
.addOrder(Order.asc("name"))
.setMaxResults(1)
.unique ...
hql查找最大值的语句
- 博客分类:
- hibernate
1.取子串的函数,SUBSTRING(s,offset,length)得到hql语句:
selelct max(SUBSTRING(对象.属性名,前缀长度)) from 对象
2.类型转化函数,CAST(t as TYPE)
selelct max( CAST(SUBSTRING(对象.属性名,前缀长度),integer)) from 对象
EJB持久化框架
1.配置JBOSS数据源
*从目录 jboss-4.0.5.GA\docs\examples\jca
*拷贝mysql-ds.xml(数据源配置模板文件)到jboss-4.0.5.GA\server\default\deploy下
*并修改数据库连接
*拷贝mysql数据库驱动到server\default\lib下
2.在META-INF目录下创建persistence.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<persistence>
<per ...
当EJB实现了多个接口的时候(不包括:java.io.Serializable接口,java.ejb.*接口)
,需要在Remote或Local注解中定义其类型
定义方式1:
如:
@Stateless(name="Ejb04")
@Remote(value={Ejb04Interface01.class,Ejb04Interface02.class,Ejb04Interface03.class})
@Local(value=Ejb04Interface04.class)
public class Ejb04Bean implements Ejb04Interface01, ...
远程客户端和本地客户端(@Remote与@Local)
1.远程客户端只能调用@Remote接口
本地客户端既可以调用@Remote接口,也可以调用@Local接口
2.如果调用@Remote接口,那么在客户端和EJB之间传输的数据必须的是序列化的
3.Remote方式传输的数据是值对象,而Local方法传输的数据时引用.
<?xml version="1.0" encoding="GBK" ?>
<!--指定struts2配置文件的DTD信息-->
<!DOCTYPE struts PUBLIC
"-//apache Software Foundation//DTD Struts Configuation 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<!-- struts 是struts2配置文件的根元素 ...
严重: Exception starting filter struts2
Unable to load configuration. - bean - jar:file:/F:/Struts2/Struts2/WebRoot/WEB-INF/lib/struts2-core-2.1.2.jar!/struts-default.xml:46:178
at com.opensymphony.xwork2.config.ConfigurationManager.getConfiguration(ConfigurationManager.java:58)
at org.apache.stru ...
log4j.jar
commons-logging.jar
没加
java.lang.IllegalAccessError: tried to access field org.slf4j.impl.StaticLoggerBinder.SINGLETON from class org.slf4j.LoggerFactory
使用hbm2java时,使用hibernate-distribution-3.3.1.GA-dist版本,做好了程序和配置文件后,运行程序出现Exception in thread "main" java.lang.IllegalAccessError: tried to access field org.slf4 ...