`
文章列表
[color=green][/color] 在保存实体对象的时候出现一下错误 错误提示:Write operations are not allowed in read-only mode (FlushMode.NEVER) - turn your Session into FlushMode.AUTO or remove 'readOnly' marker from transaction definition 网上速查是使用OpenSessionInViewFilter的缘 ...
drop FUNCTION  IF EXISTS WORKNO;create function WORKNO(projectno VARCHAR(5),workno VARCHAR(10) )returns VARCHAR(100)begin declare seq integer; declare timestr integer; declare temp_seq integer; declare number_return VARCHAR(100); set timestr = DATE_FORMAT(now(),'%Y'); select sequence+1 INTO temp_seq ...
第一次使用angularjs的directive指令,遇到非常气人的问题  app.directive('hello', function() { return { restrict: 'E', //        template: '<div>Hi there</div>', templateUrl:'http://localhost:9090/keti/template/addKetiTemplate.html' , replace: true }; });   /addKetiTemplate.html代码如下: <div> ...

这个博客很奇怪

阿斯顿辅导
由于协议错误,你的连接被中断,请重新连接远程服务器,很郁闷的事情,百度了半天没找到,最后自己修改了下连接参数解决了,记下来。修改远程回话的颜色设置
ie6 下 gif 透明效果实现 在用photo保存gif图片时把强制黑白的那个选项去掉,这样gif格式的图片在ie6下就不会有阴影了,省去了写滤镜的麻烦
protected String generateBaseHql(String model, String[] propertyName, String[] value, String[] propertyLikeName,String[] likeValue,List addedValues){ StringBuffer baseHql = new StringBuffer(); baseHql.append("from" + model + "as model  where 1=1 "); /** * 处理常规值 */for (int i = 0 ...
public List findByPage(int offset, String model, String[] propertyName, String[] value, boolean rigor) {  List valueList = new ArrayList();  StringBuffer baseHql = new StringBuffer();  String ralation = "like";  if (rigor)  {   ralation = "=";  }  baseHql.append("select model ...
关键字: struts2 redirect 参数 取不到 Struts2中通过配置文件重定向后常出现参数找不到的问题,总结一下解决方法:   1. 确保Action中的需要在redirect时传递变量是基本类型(比如int、long等);   2. 确保变量都有setter & getter;   3. 配置文件:   redirect方式:   Xml代码 <action name="view" class="myAction" method="view">     ...
order by 是sql的结尾,当执行完order by的时候,sql执行结束,所以在写sql的时候,order by必定放到结束位置 否则,必定出现问题
<div>aaa</div> <br/><div>bbb</div>  <br/><div>ccc</div> 这样写br是可以正常换行的 而像下面的写法,br似乎不能换行 <div style="float:left;">aaa</div> <br/> <div  style="float:left;">bbb</div>  <br/> <div  style=&q ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8 ...
在js里总遇到判断传参是否为空的情况,但是js里面通过obj==null判断好像作用不明显, 不过通过“!”判断,事半功倍。做个小计 function replace_null(str){ if(!str){   //alert('null');  document.write('0'); }else{  document.write(str); }}
不可否认,struts2相对于struts1来说,功能强大的多,标签的种类也多了不少, 像<s:head theam="ajax"/><s:doubleSelect> 但是美中不足,问题很多,总是出点意想不到的bug <s:doubleselect cssClass="s1" name="search.asAreaProvince"   id="cc" list="#st.list" cssStyle="width:120px;"   for ...
<%@ page contentType="text/html; charset=utf-8" %> 的影响   环境:tomcat5.0.28,jdk1.4.2 客户端:ie7   经试验,<%@ page contentType="text/html; charset=utf-8" %>决定了浏览器到服务器发送时使用的编码;以及服务器返回到浏览器使用的编码。 而 <meta http-equiv="content-type" content="text/html; charset= ...
Global site tag (gtag.js) - Google Analytics