`
文章列表
第一步:下载 maven:  https://maven.apache.org/download.cgi#    dubbox:  https://github.com/dangdangdotcom/dubbox,       介绍:http://www.open-open.com/lib/view/open1417426480618.html        dubbox: 是一波大牛在dubbo的基础上的扩展,比如加入的rest,升级了spring版本等等。 下载:zookeeper 我这下载的3.4.6  http://apache.fayea.com/zookeeper/zookeep ...
直接上配置文件, 讨论群:172429747 <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xmlns:cont ...
这几天用的sql的动态拼装,一下子就想到的valuelist,但是valuelist有好多前端的东西我们又用不到,所以想了想决定吧valuelist的动态拼装提出来。直接上传源码,不喜勿喷! <bean id="hibernate4Adapter" class="net.mlw.vlh.adapter.hibernate4.Hibernate4Adapter">     //jap的 <property name="sessionFactory" ref="entityManagerFactory&qu ...
最近看了看 spring data jpa 和 jtable 闲着无聊搭建了个框架,附上完整项目。欢迎来喷 依赖包自己下载吧
sql server : 方法1: 适用于 SQL Server 2000/2005 SELECT TOP 页大小 * FROM table1 WHERE id NOT IN           (           SELECT TOP 页大小*(页数-1) id FROM table1 ORDER BY id           ) ORDER BY id 方法2: 适用于 SQL Server 2000/2005 SELECT TOP 页大小 * FROM table1 WHERE id >           (           SELECT ISNULL(MAX(id), ...
打开注册表找到HKEY+USERS/S-1-5-21-1037942220-3475911567-3401146239-500/Software/Microsoft/Internet Explorer/View Source Editor/Editor Name 下面有个默认,修改默认,把默认的值清空即可
<iframe src="http://www.fufuok.com/" id="iframepage" name="iframepage" frameBorder=0 scrolling=no width="100%" onLoad="iFrameHeight()" ></iframe>Javascript代码: <script type="text/javascript" language="javascript"> ...
数字onkeyup="this.value=this.value.replace(/\D/g,'')" onafterpaste="this.value=this.value.replace(/\D/g,'') 汉字onkeyup="this.value=this.value.replace(/[^\u4E00-\u9FA5]/g,'')
可扩展参数的用法 public abstract List find(String hql, Object... values); sql="form table where name = ? and id = ?"; 这个时候我们需要2个参数    所以我们可以  Object[] values = {name ,id}     getJpaTemplate().find(sql,values ) 或者 getJpaTemplate().find(sql,name,id)
@Entity该导入哪个包 文章分类:Java编程 在@Entity时很容易顺手导入@org.hibernate.annotations.Entity这个包,结果导致了异常。其实应该导入的是@javax.persistence.Entity Always import @javax.persistence.Entity @org.hibernate.annotations.Entity是@javax.persistence.Entity的一个补充,但不是后者的替代品 如果import @org.hibernate.annotations.Entity的话,会报异常。 如果想使用@ ...
正则表达式限制文本框只能输入数字,小数点,英文字母,汉字 1.文本框只能输入数字代码(小数点也不能输入) <input onkeyup="this.value=this.value.replace(/\D/g,'')" onafterpaste="this.value=this.value.replace(/\D/g,'')"> 2.只能输入数 ...
$(document).ready(function(){ $("#btn1").click(function(){   var val ="";   var num = 0;   try{    $("[name='ids']").each(function(){     if($(this).attr("checked")){     num++;     val = $(this).val();     $.each(states,function(n,value) {      if(value[0] = ...
<script language="JavaScript"> Date.prototype.format = function(format) //author: meizz { var o = { "M+" : this.getMonth()+1, //month "d+" : this.getDate(), //day "h+" : this.getHours(), //hour "m+" : this.getMinutes(), //minute "s+" : ...
function openwin(id){       var answer=window.showModalDialog("demand.do?method=queryBOM&mdid="+id+"&d="+escape(new Date()),window.self,"dialogWidth:700px;dialogHeight:620px:center:yes");       if(answer==1){      window.location.href = "demand.do?method=s ...
有没有好的学习方法请大家给兄弟介绍介绍!我刚毕业!现在在公司里开发OA呢!请大家指点我下谢谢
Global site tag (gtag.js) - Google Analytics