- 浏览: 273799 次
文章分类
最新评论
-
yonghuuser:
< namespace > http://www. ...
使用 xfire 开发 web service 应用 -
悬空90:
牛人 呵呵
JCS 资料 -
悬空90:
谢谢分享 呵呵
JCS 应用 -
kuiye:
用于在客户端页面调用.
DWR util.js 整理(DWR 处理各种form表单Select/option,table等,List,Bean -
bo_hai:
好像不是原创呢!
抽象类与接口的区别
该树形结构是一颗关于地理信息的一颗树:
step 1、构建数据库(cteate_table_sql)
/*==============================================================*/
/* Table: DIM_GEOGRAPHY */
/*==============================================================*/
create table DIM_GEOGRAPHY (
ID integer not null,
GEOGRAPHY_CODE VARCHAR(32) not null,
GEOGRAPHY_NAME VARCHAR(32) not null,
GEOGRAPHY_NAME_EN VARCHAR(32) null,
GEOGRAPHY_LEVEL integer not null,
CITY_TYPE1 integer not null,
CITY_TYPE2 integer null,
GEO_TREE_CODE VARCHAR(32) null,
PARENT_GEOGRAPHY_ID VARCHAR(32) null,
USAGE_FLAG VARCHAR(2) not null,
CREATE_BY VARCHAR(32) not null,
CREATE_DATE VARCHAR(30) not null,
LASTUPDATE_BY VARCHAR(32) not null,
LASTUPDATE_DATE VARCHAR(30) not null,
constraint PK_DIM_GEOGRAPHY primary key (ID),
constraint FK_993 foreign key (CITY_TYPE2)
references DIM_DICT_ITEM (ID),
constraint FK_333 foreign key (CITY_TYPE1)
references DIM_DICT_ITEM (ID)
)
go
其中DIM_DICT_ITEM是一个数据字典表,存一些系统中常用数据,在这里存储城市类型。
step 2、构建Hibernate PO
/*========================================================================================*/
/* Bean: DimGeography */
/*========================================================================================*/
- /*
- * Created Mon Oct 16 14:07:33 CST 2006 by MyEclipse Hibernate Tool.
- */
- package com.fzfx88.po.base;
- import java.io.Serializable;
- import com.winchannel.base.service.GeographyService;
- /**
- * A class that represents a row in the 'DIM_GEOGRAPHY' table.
- * This class may be customized as it is never re-generated
- * after being created.
- */
- public class DimGeography
- extends AbstractDimGeography
- implements Serializable
- {
- /**
- * Simple constructor of DimGeography instances.
- */
- public DimGeography()
- {
- }
- /**
- * Constructor of DimGeography instances given a simple primary key.
- * @param id
- */
- public DimGeography(java.lang.Integer id)
- {
- super(id);
- }
- /* Add customized code below */
- private DimGeography country;
- private DimGeography province;
- private DimGeography city;
- private Integer countryId;
- private Integer provinceId;
- private Integer cityId;
- private String countryName;
- private String provinceName;
- private String cityName;
- public void getParents(){
- String treeCode = this.getGeoTreeCode();
- int i = treeCode.length()/3;
- GeographyService gService =new GeographyService();
- // if(i>=1){
- // country= gService.retrieveOrgByTreeCode(treeCode,1);
- // this.countryId = country.getId();
- // this.countryName =country.getGeographyName();
- // }
- if(i>=1){
- province= gService.retrieveOrgByTreeCode(treeCode,1);
- if(province!=null){
- this.provinceId = province.getId();
- this.provinceName =province.getGeographyName();
- }
- }
- if(i>=2){
- city= gService.retrieveOrgByTreeCode(treeCode,2);
- if(city !=null){
- this.cityId = city.getId();
- this.cityName =city.getGeographyName();
- }
- }
- }
- /**
- * @return Returns the cityId.
- */
- public Integer getCityId() {
- return cityId;
- }
- /**
- * @param cityId The cityId to set.
- */
- public void setCityId(Integer cityId) {
- this.cityId = cityId;
- }
- /**
- * @return Returns the cityName.
- */
- public String getCityName() {
- return cityName;
- }
- /**
- * @param cityName The cityName to set.
- */
- public void setCityName(String cityName) {
- this.cityName = cityName;
- }
- /**
- * @return Returns the countryId.
- */
- public Integer getCountryId() {
- return countryId;
- }
- /**
- * @param countryId The countryId to set.
- */
- public void setCountryId(Integer countryId) {
- this.countryId = countryId;
- }
- /**
- * @return Returns the countryName.
- */
- public String getCountryName() {
- return countryName;
- }
- /**
- * @param countryName The countryName to set.
- */
- public void setCountryName(String countryName) {
- this.countryName = countryName;
- }
- /**
- * @return Returns the provinceId.
- */
- public Integer getProvinceId() {
- return provinceId;
- }
- /**
- * @param provinceId The provinceId to set.
- */
- public void setProvinceId(Integer provinceId) {
- this.provinceId = provinceId;
- }
- /**
- * @return Returns the provinceName.
- */
- public String getProvinceName() {
- return provinceName;
- }
- /**
- * @param provinceName The provinceName to set.
- */
- public void setProvinceName(String provinceName) {
- this.provinceName = provinceName;
- }
- /**
- * @return Returns the city.
- */
- public DimGeography getCity() {
- return city;
- }
- /**
- * @param city The city to set.
- */
- public void setCity(DimGeography city) {
- this.city = city;
- }
- /**
- * @return Returns the country.
- */
- public DimGeography getCountry() {
- return country;
- }
- /**
- * @param country The country to set.
- */
- public void setCountry(DimGeography country) {
- this.country = country;
- }
- /**
- * @return Returns the province.
- */
- public DimGeography getProvince() {
- return province;
- }
- /**
- * @param province The province to set.
- */
- public void setProvince(DimGeography province) {
- this.province = province;
- }
- }
/*========================================================================================*/
/* Bean: AbstractDimGeography */
/*========================================================================================*/
- /*
- * WARNING: DO NOT EDIT THIS FILE. This is a generated file that is synchronized
- * by MyEclipse Hibernate tool integration.
- *
- * Created Mon Oct 16 14:07:33 CST 2006 by MyEclipse Hibernate Tool.
- */
- package com.fzfx88.po.base;
- import java.io.Serializable;
- /**
- * A class that represents a row in the DIM_GEOGRAPHY table.
- * You can customize the behavior of this class by editing the class, {@link DimGeography()}.
- * WARNING: DO NOT EDIT THIS FILE. This is a generated file that is synchronized
- * by MyEclipse Hibernate tool integration.
- */
- public abstract class AbstractDimGeography
- implements Serializable
- {
- /** The cached hash code value for this instance. Settting to 0 triggers re-calculation. */
- private int hashValue = 0;
- /** The composite primary key value. */
- private java.lang.Integer id;
- private java.util.Set childGeo;
- /** The value of the dimDistrSet one-to-many association. */
- private java.lang.String geoTreeCode;
- /** The value of the dimDistrSet one-to-many association. */
- private java.util.Set dimDistrSet;
- /** The value of the dimStoreSet one-to-many association. */
- private java.util.Set dimStoreSet;
- /** The value of the simple geographyCode property. */
- private java.lang.String geographyCode;
- /** The value of the simple geographyName property. */
- private java.lang.String geographyName;
- /** The value of the simple geographyNameEn property. */
- private java.lang.String geographyNameEn;
- /** The value of the simple geographyLevel property. */
- private java.lang.Integer geographyLevel;
- /** The value of the simple cityLevel property. */
- private DimDictItem cityType1;
- /** The value of the simple cityLevel property. */
- private DimDictItem cityType2;
- /** The value of the simple parentGeographyId property. */
- private java.lang.Integer parentGeographyId;
- /** The value of the simple usageFlag property. */
- private java.lang.String usageFlag;
- /** The value of the simple createBy property. */
- private java.lang.String createBy;
- /** The value of the simple createDate property. */
- private java.lang.String createDate;
- /** The value of the simple lastupdateBy property. */
- private java.lang.String lastupdateBy;
- /** The value of the simple lastupdateDate property. */
- private java.lang.String lastupdateDate;
- private Integer parentGeo;
- /**
- * Simple constructor of AbstractDimGeography instances.
- */
- public AbstractDimGeography()
- {
- }
- /**
- * Constructor of AbstractDimGeography instances given a simple primary key.
- * @param id
- */
- public AbstractDimGeography(java.lang.Integer id)
- {
- this.setId(id);
- }
- /**
- * Return the simple primary key value that identifies this object.
- * @return java.lang.Integer
- */
- public java.lang.Integer getId()
- {
- return id;
- }
- /**
- * Set the simple primary key value that identifies this object.
- * @param id
- */
- public void setId(java.lang.Integer id)
- {
- this.hashValue = 0;
- this.id = id;
- }
- /**
- * Return the value of the GEOGRAPHY_CODE column.
- * @return java.lang.String
- */
- public java.lang.String getGeographyCode()
- {
- return this.geographyCode;
- }
- /**
- * Set the value of the GEOGRAPHY_CODE column.
- * @param geographyCode
- */
- public void setGeographyCode(java.lang.String geographyCode)
- {
- this.geographyCode = geographyCode;
- }
- /**
- * Return the value of the GEOGRAPHY_NAME column.
- * @return java.lang.String
- */
- public java.lang.String getGeographyName()
- {
- return this.geographyName;
- }
- /**
- * Set the value of the GEOGRAPHY_NAME column.
- * @param geographyName
- */
- public void setGeographyName(java.lang.String geographyName)
- {
- this.geographyName = geographyName;
- }
- /**
- * Return the value of the GEOGRAPHY_LEVEL column.
- * @return java.lang.Integer
- */
- public java.lang.Integer getGeographyLevel()
- {
- return this.geographyLevel;
- }
- /**
- * Set the value of the GEOGRAPHY_LEVEL column.
- * @param geographyLevel
- */
- public void setGeographyLevel(java.lang.Integer geographyLevel)
- {
- this.geographyLevel = geographyLevel;
- }
- /**
- * Return the value of the CITY_LEVEL column.
- * @return java.lang.Integer
- */
- public DimDictItem getCityType1()
- {
- return this.cityType1;
- }
- /**
- * Set the value of the CITY_LEVEL column.
- * @param cityLevel
- */
- public void setCityType1(DimDictItem cityType1)
- {
- this.cityType1 = cityType1;
- }
- /**
- * Return the value of the PARENT_GEOGRAPHY_ID column.
- * @return java.lang.Integer
- */
- public java.lang.Integer getParentGeographyId()
- {
- return this.parentGeographyId;
- }
- /**
- * Set the value of the PARENT_GEOGRAPHY_ID column.
- * @param parentGeographyId
- */
- public void setParentGeographyId(java.lang.Integer parentGeographyId)
- {
- this.parentGeographyId = parentGeographyId;
- }
- /**
- * Return the value of the USAGE_FLAG column.
- * @return java.lang.String
- */
- public java.lang.String getUsageFlag()
- {
- return this.usageFlag;
- }
- /**
- * Set the value of the USAGE_FLAG column.
- * @param usageFlag
- */
- public void setUsageFlag(java.lang.String usageFlag)
- {
- this.usageFlag = usageFlag;
- }
- /**
- * Return the value of the CREATE_BY column.
- * @return java.lang.String
- */
- public java.lang.String getCreateBy()
- {
- return this.createBy;
- }
- /**
- * Set the value of the CREATE_BY column.
- * @param createBy
- */
- public void setCreateBy(java.lang.String createBy)
- {
- this.createBy = createBy;
- }
- /**
- * Return the value of the CREATE_DATE column.
- * @return java.lang.String
- */
- public java.lang.String getCreateDate()
- {
- return this.createDate;
- }
- /**
- * Set the value of the CREATE_DATE column.
- &
发表评论
-
正确使用 Volatile 变量
2008-05-21 11:30 1369Java™ 语言包含两种内在的同步机制:同步块(或方法)和 v ... -
构建一个更好的 HashMap
2008-05-21 10:47 1594ConcurrentHashMap 是 Doug Lea ... -
【Axis】简介信息
2007-09-14 17:43 1528Apache Axis 是Apache WebService项 ... -
抽象类与接口的区别
2007-08-23 00:17 37199abstract class和interface是Ja ... -
doGet()和doPost()的区别
2007-08-08 23:31 3304get只有一个流,参数附加在url后,地址行显示要传送的信息, ... -
面向对象的三个基本特征
2007-08-08 23:26 1865面向对象的三个基本特征是:封装、继承、多态。 封装 封装最好 ... -
java 树形结构设计(八) Struts + Hibernate ...
2007-06-04 17:08 2282step 12 : 构件树结构页面 GeogrophyLeft ... -
java 树形结构设计(七) Struts + Hibernate
2007-05-29 13:40 6104step 11、构建 树形结构类 java 代码 ... -
java 树形结构设计(六) Struts + Hibernate
2007-05-29 13:14 2594step 10、构造 树形结构类 java 代码 ... -
java 树形结构设计(五) Struts + Hibernate
2007-05-29 13:11 2586step 9 构造 树结构 类 java 代码 ... -
java 树形结构设计(四) Struts + Hibernate
2007-05-29 13:05 2210step 8: 数据访问类DAO java 代码 ... -
java 树形结构设计(三) Struts + Hibernate
2007-05-29 12:46 3182step 6、 Struts Action 类 jav ... -
java 树形结构设计(二) Struts + Hibernate
2007-05-29 11:52 3312step 3. Hibernate hbm xml 配置文件( ...
相关推荐
3. **获取树形数据**:在服务层(Service层),使用Hibernate的HQL(Hibernate查询语言)或SQL查询语句,检索所有菜单,并按照父ID进行排序,构建出树形结构。可以使用递归方法或者预加载子菜单的方式来实现。 4. *...
前端通常使用JavaScript库(如jQuery、Bootstrap Treeview、AngularJS等)来呈现树形结构。这些库提供了方便的API来动态加载和操作树节点。在本项目中,可能会利用JSP页面结合JavaScript来渲染树形菜单。 6. **...
Struts+Hibernate+Javascript 实现人无限级分类树...主要是用到了Struts+Hibernate+JSTL1.1和自定义标签,树形菜单节点用 JavaScript控制显示,菜单结构由数据库中的字段区分,测试数据是通过TestMain.java插入数据库的
**ExtJS** 是一个用于构建桌面和移动Web应用程序的JavaScript库,提供了丰富的组件库,如表格、图表、表单、树形结构等,以及强大的数据管理和布局系统。它的使用可以让开发者创建出具有现代UI设计的复杂Web应用。 ...
Struts2+Spring+Hibernate+EasyUI 是一个经典的Java Web开发框架组合,广泛应用于企业级应用的构建。这个管理系统利用这些技术的特性,提供了一种高效、稳定且易于维护的解决方案。 **Struts2** 是一个强大的MVC...
5. **dTree插件**:dTree是一款基于JavaScript的可折叠树形菜单组件,用于在网页上显示层次结构的数据。在本项目中,前端可能利用dTree来展示从服务器获取的JSON数据,实现动态的、可交互的无限级联树视图。 6. **...
在图书管理系统中,Ext用于构建用户界面,包括表格、树形结构、表单等,通过Ajax技术与后台进行异步通信,提供流畅的用户体验。Ext的组件化开发方式使得前端代码结构清晰,易于维护和扩展。 这四个框架的结合使用,...
【标题】"extjs+struts+hibernate+spring(物流管理系统)-part3" 提供的是一个基于Java技术栈的物流管理系统实现,主要利用了ExtJS作为前端框架,Struts作为MVC框架,Hibernate作为ORM工具,以及Spring作为整体应用的...
ExtJS 是一个用于构建富客户端(Rich Internet Applications,RIA)的JavaScript库,它提供了一系列组件,如表格、树形结构、窗口、菜单等,用于创建复杂的、交互性强的Web界面。ExtJS 使用 MVC 架构,并且有强大的...
它提供了大量的预定义样式和组件,如表格、树形结构、对话框等,帮助开发者快速创建美观且响应式的界面。在权限管理系统的视图层,EasyUI可以帮助展示用户权限、角色分配等信息,提供友好的用户交互体验。 这个系统...
它的组件包括表格、表单、树形结构、面板、图表等,能实现复杂的布局和数据展示。 在"Struts+Spring+Hibernate+ExtJs毕业系统"中,Struts 负责接收和处理用户请求,Spring 管理业务对象和事务,Hibernate 处理...
本资源"图书管理系统(struts+hibernate+spring+ext)130221.rar"提供了一个完整的基于Java Web的图书管理系统实现,采用经典的SSH(Struts、Hibernate、Spring)框架和EXT前端技术,旨在帮助计算机专业的学生进行毕业...
至于"treeTest"这个文件,可能是项目中的测试用例或者包含了一个简单的树形结构的示例,用于验证dtree的正确显示和操作功能。在实际开发中,测试是非常重要的环节,确保各个部分的功能正常运行并能适应各种情况。 ...
在CRM系统中,它提供了丰富的UI组件,如表格、表单、树形结构等,使得界面更加直观和交互性强。通过Ajax技术,ExtJS实现了页面数据的异步加载,提升了用户体验。 该CRM系统可能包含以下主要功能模块: 1. 客户管理...
Struts+Spring+Hibernate+ExtJs学生学籍系统毕业设计是一个综合性的项目,它整合了四个关键的技术框架,用于构建高效、稳定且易于维护的Web应用程序。这些技术分别是: 1. **Struts**:这是一个基于MVC(Model-View...
Ext JS是一个用于构建富客户端Web应用的JavaScript库,提供了丰富的UI组件,如表格、树形结构、表单等。在本系统中,Ext被用来构建用户友好的界面,提供直观的交互体验,例如图书列表展示、搜索功能、借阅操作等。 ...
Struts2+Spring3+Hibernate4+Maven+EasyUI 是一个常见的Java Web开发组合,它们各自扮演着关键的角色,构建了一个高效、模块化的应用程序架构。这个组合在企业级应用中广泛使用,尤其是在数据管理、业务逻辑处理和...
《JSP源码 图书管理系统(struts+hibernate+spring+ext)》是一个基于Java技术的开源图书管理系统,它整合了四大主流框架——Struts、Hibernate、Spring以及Ext,构建了一个高效、灵活且功能丰富的后台管理平台。...