全部博文(178)
发布时间:2014-09-11 14:10:06
相信大家在开发java的时候一定会遇到要求将java工程打包成可运行的jar的需求,今天我在这篇博客中详细讲解一下生成可运行jar的方法。1. 工程中不包含第三方的jar包这种情况比较简单,选中需要生成jar的工程,右击-->Export,出现如下的窗口选中java--- > JAR file--> next --- > next --- > main class要.........【阅读全文】
发布时间:2014-09-11 13:41:27
//原来的示例: /* log.info("Now trying to call the Stored Procedure*****************"); Query exQuery = session.createSQLQuery("CALL " + "insertHouseHello(:time.........【阅读全文】
发布时间:2014-09-11 10:55:19
项目中需要一个json对象,封装的时候,需要数据的列名。 在jdbc里面,可以有个ResultMetaData对象获取列名字。因为我用的是hibernate,这个框架已经封装了很多,一般是难以获得resultset的。 经过不懈的bing和google(作为一个环保的准程序员,拒绝用百度了),发现在hibernate里面,可以获得resu.........【阅读全文】
发布时间:2014-09-11 10:00:23
执行sql查询语句:List list2 =this.getSession().createSQLQuery("select t.userID from " + tableName + " t where date>='"+ start + "' and date<='" + end + "' and t.paidItemNameID=2").........【阅读全文】
发布时间:2014-09-08 22:29:47
Can not find the tag library descriptor for "http://www.springframework.org/tags"1.Download the Spring dependency jar2.Place it to the lib folder path is /WEB-INF/lib/spring.jar3.Then open the web.xml and the sample code is:<jsp-config> <taglib> <taglib-uri>/WEB-INF/sp.........【阅读全文】