1)  Struts-Hibernate
Struts-Hibernate
2)  Struts+Hibernate
Struts+Hibernate
1.
Compare and Analysis between Ruby on Rails and Struts+Hibernate Frame;
Ruby on Rails与Struts+Hibernate架构之比较分析
2.
After the introduction of key characters of Ruby on Rails and lightweight J2EE frame Struts+Hibernate,compare and analysis were given to the two frames from three aspects,including front controller,acion and the model,persistence frameworks.
在给出了 Ruby on Rails 与轻量级 J2EE 架构 Struts+Hibernate 关键特性的基础上,从前端控制器、动作和模型,持久性框架三个方面对两种架构进行了比较。
3)  Struts+Hibernate construction
struts+hibernate架构
4)  Struts+Hibernate+Spring
Struts+Hibernate+Spring
1.
A solution of application system to meet the practical work need in forest government affairs management, based on the mainstream of Struts+Hibernate+Spring software framework and integrated with database, GIS and network technology were put forward.
详细介绍了基于业界主流的Struts+Hibernate+Spring软件架构,综合运用数据库技术、地理信息系统技术GIS和网络技术设计的一套符合林政管理实际工作需求的应用系统方案。
2.
Based on the real demand of people s court at all levels,court case justice process management system solution based on the struts+hibernate+spring magistral and portable J2EE framework in software industry nowadays is introduced in detail,and then task-based access control is discussed.
针对各级人民法院的实际需求,对基于当前业界主流的Struts+Hibernate+Spring轻量级J2EE架构设计的法院案件审理流程管理系统方案进行了详细介绍,并讨论了基于任务的访问控制TABC等问题。
5)  Spring+Struts+Hibernate
Spring+Struts+Hibernate
6)  St
St
1.
Studies on the Application of Drug Carried Materials PLA and PELA in the Pharmacy of ST;
聚乳酸类纳米载体材料在中药ST制剂中的应用研究
2.
Graft copolymers of β-pinene with methyl methacrylate(MMA),butyl acrylate(BA) or styrene(St) were synthesized by the combination of living cationic polymerization and atom transfer radical polymerization(ATRP).
通过活性正离子聚合与原子转移自由基聚合(ATRP)转换合成了β-蒎烯与甲基丙烯酸甲酯(MMA)、丙烯酸丁酯(BA)、苯乙烯(St)的新型接枝共聚物。
3.
The reactive eompatibilizers,HDPE-g-ITA and HDPE-g-(ITA-co-St),were prepared by melt grafting technique through reactive twin screw extrusion.
本文采用反应型双螺杆挤出机和熔融接枝技术制备了可反应性相容剂HDPE-g-ITA和HDPE-g-(ITA co-St),借助气相色谱和热重分析技术,确定了熔融接枝工艺和工艺参数。
参考词条
补充资料:有关struts框架简单描述


Struts是一个基于MVC模型的架够在WEB中的实现,单词本身有支持的意思.下面简单介绍一下,struts的基本工作原理和内部主要几个对象的调用和实现方式.

1.框架和技术的个人理解:所谓框架或技术或是标准都是原来技术的基础上进行一些新的发现和规划,让其在一个规则中办事(开发),那么,就可以适应更大或更新的系统需求,而技术的本原都是不变化的.所以,不要将技术作为自己的负担,必要的时候,技术并不是最重要的.自我的发挥和业务的分析才是一个开发者最需要得到的东西.就struts框架一样,只不过是Apache公司为你多写了几个JAVA类,然后以开源包的形式进行发布,以实现地层的控制平台,其实,如果自己有能力也可以写的.

2.框架简要描述:框架为系统的标准,为适应修改的维护以及扩展的需求,主要原因的是,框架是分离和分层设计,思想为各自完成各自的事情,相互之间通过控制中心来调用和控制使用.

3.struts框架核心组建(JAVA类):struts中核心主要有6个组建和3个标记库:

组建:

3.1.ActionServlet接受用户请求,委托RequestProcessor.

3.2.RequestProcessor上述ActionServlet委托其完成业务处理的任务,负责读取Struts-config.xml的处理逻辑,并依照此处理业务进行处理过程.

3.3.ActionForm保持与用户请求的表单数据一致,或者说,保持用户的请求数据于request对象中(可以使用session或Application),使一次用户请求保持于服务器中.

3.4.Acion依据上述ActionForm的内容进行与JavaBean的交互并根据结果返回一个AcionFoward类型的对象给RequestProcessor.

3.5.AcionFoward为指定的View视图的选择结果.

3.6.AcionMapping为Acion程序中excute()方法使用findForward()方法时候,传入业务逻辑参数与实际VIEW参数的影射关系.

标记库:

3.7.struts-html.tld:扩展的HTMLForm的JSP标记库.

3.8.struts-bean.tld:扩展的JAVABEAN标记库.

3.9.struts-logic.tld:扩展测试属性的标记库.

JSP的几个比较常用的对象简单介绍:

3.10.page对象:仅仅为当前页面使用,脱离当前页面,对象消失.

3.11.request对象:为用户一次请求,就是说,当用户提交请求一旦一个request对象建立,不论中间经过多少个页面处理或控制台处理(除非使用:response.sendRedirect(URL)进行转发,因为那样相当于不是一次用户请求了)

3.12.session对象:为一个用户登陆的全局变量,只要这个用户没有退出系统,此变量为可以一直使用,非必要信息(用户基本信息)尽量少使用此变量以减少服务器开销.

3.13.Applicate为服务器全局变量,系统启动的时候,自动启动该变量保存于servletContext对象中,在开发的时候是配置于服务器的配置文件中的.

基于Tomcat的struts框架几个核心配置文件:

3.14.Server.xml:为部署工程目录部署和系统开发端口以及,以及系统全局加载信息.

3.15.Web.xml:这个配置文件在服务器上默认有一个,为服务器目录保护以及服务器的默认加载信息的配置,用户的Web.xml配置于其目录下的WEB-INF下,为用户许默认启动的Servlet和参数信息.

3.16.struts-config.xml配置struts框架的组建以及标记库和控制器等信息.

4.struts框架中大致的工作流程:

4.1.首先用户提交一个xxx.do(默认的配置属性,在用户自定义的Web.xml中),服务器端通过ActionServlet使用doGet()/doPost()方式进行接受,并调用自身的一个process()方法,它负责调用对象RequestProcessor,有关*.do的方式在Web.xml是这样写的:

<!--ActionServletConfiguration-->
<servlet>
<servlet-name>actionServlet</servlet-name>
<servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
</servlet>

<!--ActionServletMapping-->
<servlet-mapping>
<servlet-name>actionServlet</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>

解释:

<servlet-name>:表示这个Servlet的一个逻辑名称,为了和下面的协议想对应的K

[1] [2]  下一页


说明:补充资料仅用于学习参考,请勿用于其它任何用途。