- 浏览: 220107 次
- 性别:
- 来自: 珠海
最新评论
-
xufun:
路过,学习
反编译Apk得到Java源代码 -
xiaoane:
the second way is usefull :-)
解决mysql“Access denied for user 'root'@'localhost'” -
yaoneng:
这个没什么,只是一个思想
actionScript键盘控制 物体移动 -
lakewalker:
这个不咋地啊
actionScript键盘控制 物体移动 -
jenlp520:
yaoba 写道
JsonConfig jsonConfig ...
hibernate List 转JSON发生错的解决方法
文章列表
很多时候数据表都有外键表的,当用hibernate查询结果集时,其关联的对象集也一起来,所以会造成转换JSON发生错误;
以下是一段查询 城市表 的,其关联的主键表是 省份名表,
以下是方法里的代码,需要 import net.sf.json.*;
List list1=new hi.TCityDAO().findAll(); List li=new ArrayList();//用于装入用来转成JSON的List for (Iterator iterator = list1.iterator(); iterator.hasNext();) { TCity obje ...
这个类是hibernate映射时自动生成的DAO类;
public class TCompanyDAO extends HibernateDaoSupport
{
private static final Log log = LogFactory.getLog(TCompanyDAO.class);
//(1)获得会话
private static HibernateTemplate
hibernateTemplate
=new
HibernateTe ...
ApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(request.getSession().getServletContext());
TProvinceDAO cs = (TProvinceDAO) ctx.getBean("TProvinceDAO");
List list =cs.findAll();
JSTL配置问题:According to TLD or attribute directive in tag
file
2009年04月09日 星期四 23:10
应用部署运行的时候出现JSP异常, 发生在使用JSTL库的时候:
According to TLD or attribute directive in tag file, attribute
value does not accept any expressions
, 可能是因为使用了JSP2.0版本,
同时又没有使用JSTL core库的备用版本(RT库), 以下有两种处理方法:
1. 如果不想 ...
今天搞JSTL时,发现了一个很大问题,JSTL什么语法都没错的情况下还报以下的错:
org.apache.jasper.JasperException: /index.jsp(42,5) According to TLD or attribute directive in tag file, attribute items does not accept any expressions
太惊喜了,终于找到原因所在,原来是web.xml里的版本问题:
<?xml version="1.0" encoding="UTF-8"?> ...
<%@ taglib uri="http://java.fckeditor.net" prefix="FCK"%>
<FCK:editor id="afficheContext" toolbarSet="wang" width="100%" height="250pt"basePath="FCKeditor/"></FCK:editor>
js代码var content = FCKeditorAPI.G ...
<html xmlns:v>
<head>
<style>
v\:*{behavior: url(#default#VML);}
</style>
</head>
<body>
<v:roundRect style="position:absolute;left:20px;top:50px;width:200px;height:140px;" FillColor="#AAEAFA" Filled="T" /> ...
<script> <!--var day=""; var month=""; var ampm=""; var ampmhour=""; var myweekday=""; var year=""; mydate=new Date(); myweekday=mydate.getDay(); mymonth=mydate.getMonth()+1; myday= mydate.getDate(); year= mydate.getFullY ...
<html>
<head>
<title>DRAG the
DIV</title>
<meta http-equiv="Content-Type"
content="text/html; charset=gb2312">
<style>
*{font-size:12px}
.dragTable{
font-size:12px;
border-top:1px
solid #3366cc;
margin-bottom: 10px;
width:100 ...
Select Top在不同数据库中的使用用法:
1. Oracle数据库
SELECT * FROM TABLE1 WHERE ROWNUM<=N
2. Infomix数据库
SELECT FIRST N * FROM TABLE1
3. DB2数据库
SELECT * ROW_NUMBER() OVER(ORDER BY COL1 DESC) AS ROWNUM WHERE ROWNUM<=N
或者
SELECT COLUMN FROM TABLE FETCH FIRST N ROWS ONLY
4. SQL Serve ...
<?xml version="1.0" encoding="UTF-8"?><web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xm ...
<?xml version='1.0' encoding='UTF-8'?><!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<!-- Generated by MyEclipse Hibernate Tools. ...
说明:本整合使用版本为Struts2-2.1.8、Spring-2.5.6、Hibernate-3.2 使用注解方式进行整合
必要jar包:antlr-2.7.6.jar、asm.jar、asm-attrs.jar、aspectjweaver.jar、cglib-nodep-2.1_3.jar
一、 Spring+Hibernate整合:
Spring整合Hibernate,是做了一个很大的调整的,因为spring可以把管理Hibernate的工作都做了,以前的hibernate.cfg.xml文件都去掉了,而将这些内容都交给了spring来管理了。
1、 applicationCo ...
示例:某一列名为columnName
中的一个单元格值为 abcdefg
的字符,我希望把其中的 de
变成 123,最后得到的结果是
abc123fg
实现的SQL语句如下:
update fromName
set columnName
=replace(columnName
,'de','123')
PS:其中的columnName
是同一列名,如果columnName
的列类型为nText
的时候,语句运行会出错,修改方法如下:
update fromName
set columnName
=rep ...
相信大家心里都对这两个控件都有个底了,RadioButton的单选按钮;RadioGroup是单选组合框,用于将RadioButton框起来;
在没有RadioGroup的情况下,RadioButton可以全部都选中;
当多个RadioButton被RadioGroup包含的情况下,RadioButton只可以先中一个;
简单的解答完毕,谢谢!!