`
文章列表
在eclipse中,点击右键,点击 set Property,属性名称 svn:ignore 选择 Enter a text property .myeclipse .settings .classpath .mymetadata .project 这样设置的结果是,在svn同步代码本机的那些文件,并且也不提示文件变化。
使用getRequestDispatcher 的方式,对于绝对路径是可以使用的,struts会自动加上context的。注意红色字体部分,如果没有将显示白页。 request.getRequestDispatcher("/syslog/triger_manage.do?method=findTriger").forward(request,response);
在应用程序开发中,如果内容过长,想截取一定长度字符,然后补充"....." jstl1.1引入了一个fn.tld的标签,用于处理字符,如获得字符length,substring,indexof,endWith,lowcase 实现截取字符串 如: <c:set var="log.logTitle" value="做一个截取字符串长度的测试" <c:choose>     <c:when test="${fn:length(log.logTitle) > 10}">      & ...
<display:column href="#" style="width:15%" maxLength="50" titleKey="label.Syslog.CreateTime" > <a href="javascript:show_syslog('${row.logstackId}')"><fmt:formatDate value="${row.createtime}" pattern=" ...
<?xml version="1.0" encoding="utf-8"?>      <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"       "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">         <hibernate-mapping>          < ...
   Hibernate映射类型分为两种:内置映射类型和客户化映射类型。内置映射类型负责把一些常见的Java类型映射到相应的SQL类型;此外,Hibernate还允许用户实现UserType或CompositeUserType接口,来灵活地定制客户化映射类型。客户化类型能够把用户定义的Java类型映射到数据库表的相应字段。  一、Hibernate的内置映射类型 1、Java基本类型的Hibernate映射类型 Hibernate映射类型 Java类型
iframe的刷新方式 1. 刷新方式可以使用 javascript 的 document.fr.location.reload() 2. 还有就是修改 document.fr.location.href 也可以实现刷新的功能 例如: <iframe name="fr" width="96%" src="alert_search.do?method=findSys"></iframe> <script type="text/javascript"> function ...
<iframe src="1.htm" name="ifrmname" id="ifrmid"></iframe> 方案一:用iframe的name属性定位      <input type="button" name="Button" value="Button" onclick="document.frames('ifrmname').location.reload()"> 或 <input type=&q ...
<%@ page language="java" pageEncoding="UTF-8"%> <%@ page import="org.displaytag.decorator.TotalTableDecorator"%> <%@ include file="/inc/tool.jsp" %> <% String path = request.getContextPath(); String basePath = request.get ...
在 display 标签中 href 属性上使用javascript,如果嵌套调用EL语言,将会出现问题,总是显示第一个记录的对象信息,例如下述用法。 1. 在内容中使用 <a href 标签的方式,可以嵌套 row.id ,并且数据显示正确。         <display:column style="width:20%" titleKey="label.Syslog.DeviceName"> <a href="javascript:show_syslog('${row.id}')&qu ...
取得某一条记录的当天所有记录 1.常见方式 select * from syslog_logstack a where to_date(to_char(createtime, 'yyyy-mm-dd'), 'yyyy-mm-dd') = (select to_date(to_char(createtime, 'yyyy-mm-dd'), 'yyyy-mm-dd') as createtime  from syslog_logstack t where t.logstack_id='83899') 2.这样更简单 select * from syslog_logstack a where to ...
hql中存在limit属性,不过并没有发挥作用,以下方法可以达到同样效果。 String sqlQuery="from AccessHistory ah order by ah.accessTime desc";    Query query=session.createQuery(sqlQuery);    query.setFirstResult(0);    query.setMaxResults(5);
Hibernate配备了一种非常强大的查询语言,这种语言看上去很像SQL。但是不要被语法结构 上的相似所迷惑,HQL是非常有意识的被设计为完全面向对象的查询,它可以理解如继承、多态 和关联之类的概念。 第 15 章 HQL: Hibernate查 ...
1. applicationContext.xml 在文件没有配置 对应的xml映射文件,查询数据的时候,也不报错,但是就是查不到数据。   <bean id="sessionFactory"  class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">  <property name="dataSource">   <ref bean="dataSource" />  </property> ...
flex demo ,java fx demo   http://axelscript.com/wp-content/Examples/DrawingWithUIComponent4/DrawingWithUIComponent4.html http://axelscript.com/wp-content/Examples/GeometryWarsFlexApp02/GeometryWarsFlexApp01.html http://axelscript.com/wp-content/Examples/RichTextEditorExample/RichTextEditorExample. ...
Global site tag (gtag.js) - Google Analytics