<a href="javascript:history.go(-1);">后退</a>
<a href="javascript:history.go(1);">前进</a>
select * from tab_content_info where con_id = (
select c.n
from
(select con_id,lag(con_id,1,0)over(order by con_id) as n from tab_content_info) c where c.con_id=3010)
select * from tab_content_info where con_id = (
select c.n
from
(select con_id,lead(con_id,0)over(order by con_id) as n from tab_content_info) c where c.con_id=3010)
后一条记录
document.getElementById("xxlb").value= ${cct.ctid};
直接选择下拉列表项
过滤HTML标签
//正则表达式过滤html标签
for (int i = 0; i <lc.size(); i++) {
String htmlStr=lc.get(i).getTitle();
java.util.regex.Pattern p_html;
java.util.regex.Matcher m_html;
String regEx_html = "<[^>]+>"; //定义HTML标签的正则表达式
p_html = Pattern.compile(regEx_html,Pattern.CASE_INSENSITIVE);
m_html = p_html.matcher(htmlStr);
htmlStr = m_html.replaceAll(""); //过滤html标签
lc.get(i).setTitle(htmlStr);
}
1.在ckeditor目录下的config.js添加以下配置参数即可:
config.enterMode = CKEDITOR.ENTER_BR;
config.shiftEnterMode = CKEDITOR.ENTER_P;
config.startupMode = ‘source’;
生成表的时候出现 标示符无效
查看表中是否用了关键字。。
:@OneToOne or @ManyToOne on vo.StuCour.student references an unknown entity: vo.Student
错误原因(2):在实体类public class ClassName上面没有加实体注解,
@Table(name = "Student",catalog = "sms")
Student student = (Student)query.uniqueResult(); //当确定返回的实例只有一个或者null时 用uniqueResult()方法
intValue()
如Integer类型,就回有intValue()方法意识是说,把Integer类型转化为Int类型。其他类似,都是一个意思
valueOf()
如String就有valueOf()方法,意识是说,要把参数中给的值,转化为String类型,Integer的valueOf()就是把参数给的值,转化为Integer类型。其他类似,都是一个意思。
java注解
当查询两个表之间的关联的时候
第一种方法 用left join 查出来的是一个对象 可以直接取值
String hql = "from Log l left join fetch l.logtype where l.id="+id+"";
List li = super.getHibernateTemplate().find(hql);
Log log =(Log)li.get(0);
第二种方法 用拼接条件 查出来是两个对象 需要先转换成object数组 然后再取对象。
String hql = "from Log l,LogType t where l.logtype.id=t.id and l.id="+id+"";
List li = super.getHibernateTemplate().find(hql);
Object [] obj = (Object[])li.get(0);
Log log =(Log)obj[0];
判断一个集合是否为空
<s:if test="user.isEmpty()">
暂无数据
</s:if>
<s:else>
</s:else>
判断一个对象是否为空
<s:if test="user==null">
暂无数据
</s:if>
<s:else>
</s:else>
No result defined for action com.test.action.UserAction and result input
然后再检查struts配置文件。。。
异常错误:org.hibernate.HibernateException: No Hibernate Session bound to thread,and configuration does not allow creation of non-transactional one here
ActionContextClearUp
ActionContextClearUp其实是Defer ClearUP.作用就是延长action中属性的生命周期,包括自定义属性,以便在jsp页面中进行访问,让actionContextcleanup过滤器来清除属性,不让action自己清除。
String timerKey = "ActionContextCleanUp_doFilter: ";
UtilTimerStack.setActive(true);
UtilTimerStack.push(timerKey);
UtilTimerStack.pop(timerKey);
oracle创建表时:ORA-00904: : 标识符无效
关键字问题 使用了保留字,必须用的话就用引号吧
Struts Spring com/opensymphony/xwork2/spring/SpringObjectFactory.java:220:-1
严重: Exception starting filter struts2
Class: com.opensymphony.xwork2.spring.SpringObjectFactory
File: SpringObjectFactory.java
Method: getClassInstance
Line: 220 - com/opensymphony/xwork2/spring/SpringObjectFactory.java:220:-1
function jqlen(len,zf){
var t =0;
var xzf='';
var s=zf.split("");
for(var i=0;i<s.length;i++){
if(t<=len){
//判断是否是英文
if(s[i].charCodeAt(0)<299){
t++;
}else{
t+=2;
}
xzf=xzf+s[i];
}else{
break;
}
if(t>len){
xzf+="\.\.\.";
}
}
return xzf;
}
function jszf(s){
$("["+s+"]").each(function(){
this.innerHTML=jqlen(26,this.innerHTML);
});
}
<a ss="a" ></a>
<script >
jszf("ss=a");
</script>
//获取当前鼠标点击的位置
var lefts = $(obj).offset().left;
var tops = $(obj).offset().top;
var tops = $(obj).offset().top;
//div showdiv延迟1秒后隐藏 jquery
$("#showdiv").delay(1000).hide(0);
BeanUtils.copyProperties(tm,ttt);//复制实体类
style = "word-wrap:break-word;" 换行样式
如果form表单正常情况下 提交不了 抛异常
//获取一个字符串中有多少个1
String content = "1_2,1_3,1_4,2_1,2_2";
int count = 0;
if(null != content && !"".equals(content)){
Pattern p = Pattern.compile("2_");
Matcher m = p.matcher(content);
while (m.find()) {
count++;
}
System.out.println(count);
}
int count = 0;
if(null != content && !"".equals(content)){
Pattern p = Pattern.compile("2_");
Matcher m = p.matcher(content);
while (m.find()) {
count++;
}
System.out.println(count);
}
//获取项目路径
String path = System.getProperty("user.dir")+"
\\src";
System.out.println(path);