SpringSide示例之HelloWorld


SpringSide是个什么东西呢?这么说吧,就是采众家之长的一个一站式框架,它吸取了开源界许多优秀组件的精华部分,非常简约的一个东西,具体就不多介绍了,自己可以参考官方文档。

下面来看看运用这个框架实现一个简单的用户管理究竟有多么容易。

先来看表现层:

新增或修改用户页面:


<%@ page contentType="text/html;charset=UTF-8" %>
<%@ include file="/commons/taglibs.jsp" %>
<html>
<head>
    
<%@ include file="/commons/meta.jsp" %>
    
<title>User Manage</title>
</head>

<body>
<div id="page">
    
<div id="header">
        
<h1>Helloworld Sample</h1>
    
</div>
    
<%@ include file="/commons/messages.jsp" %>
    
<div id="content">
        
<h1>User Infomation Manage</h1>
        
<html:form action="/user.do" focus="name" styleClass="form" onsubmit="return validateUserForm(this)">
            
<input type="hidden" name="method" value="save"/>
            
<html:hidden property="id"/>
            
<table>
                
<tr>
                    
<td><label>Name</label></td>
                    
<td>
                        
<html:text property="name" styleClass="text"/>
                        
<span class="req">*</span>
                        
<span class="fieldError"><html:errors property="name"/></span>
                    
</td>
                
</tr>
                
<tr>
                    
<td><label>EMail</label></td>
                    
<td>
                        
<html:text property="email" styleClass="text"/>
                    
</td>
                
</tr>
                
<tr>
                    
<td><label>Remark</label></td>
                    
<td>
                        
<html:textarea property="descn" rows="10" cols="40"/>
                    
</td>
                
</tr>
            
</table>
            
<div>
                
<html:submit property="saveBtn" styleClass="button">Save</html:submit>
                
<html:cancel styleClass="button">Cancel</html:cancel>
            
</div>
        
</html:form>
    
</div>
</div>
<html:javascript formName="userForm" staticJavascript="false" dynamicJavascript="true" cdata="false"/>
<script type="text/javascript" src="${ctx}/scripts/validator.jsp"></script>
<%@ include file="/commons/footer.jsp" %>
</body>
</html>


用户列表页面:

<%@ page contentType="text/html;charset=UTF-8" %>
<%@ include file="/commons/taglibs.jsp" %>
<html>
<head>
    
<%@ include file="/commons/meta.jsp" %>
    
<link href="${ctx}/widgets/extremecomponents/extremecomponents.css" type="text/css" rel="stylesheet">
    
<title>User Manage</title>
</head>

<body>
<div id="page">
    
<div id="header">
        
<h1>Helloworld Sample</h1>
    
</div>

    
<div id="content">
        
<h1>User List</h1>
        
<%@ include file="/commons/messages.jsp" %>
        
<ec:table items="users" var="user"
                  action
="${ctx}/user.do">
            
<ec:exportXls fileName="UserList.xls" tooltip="Export Excel"/>
            
<ec:row>
                
<ec:column property="rowcount" cell="rowCount" sortable="false" title="No." width="60"/>
                
<ec:column property="id" title="ID" width="60"/>
                
<ec:column property="name" title="Name" width="120"/>
                
<ec:column property="email" title="Email" width="120"/>
                
<ec:column property="descn" title="Description" viewsDenied="html"/>
                
<ec:column property="null" title="Edit" width="40" sortable="false" viewsAllowed="html">
                    
<href="user.do?method=edit&id=${user.id}">Edit</a>
                
</ec:column>
                
<ec:column property="null" title="Remove" width="40" sortable="false" viewsAllowed="html">
                    
<href="user.do?method=delete&id=${user.id}">Delete</a>
                
</ec:column>
            
</ec:row>
        
</ec:table>
    
</div>

    
<div>
        
<button id="addbtn" onclick="location.href='user.do?method=create'">Add</button>
    
</div>
</div>
<%@ include file="/commons/footer.jsp" %>
</body>
</html>

对应的控制器类UserAction.java:


package org.springside.helloworld.web;

import org.springside.core.web.StrutsEntityAction;
import org.springside.helloworld.model.User;
import org.springside.helloworld.service.UserManager;

/** *//**
 * 用户管理Controller.
 * <p/>
 * 继承于StrutsEntityAction,不需编码就拥有默认的对User对象的CRUD响应函数. 如果想了解不继承于EntityAction,自行编写CRUD的写法, 参考{
@link UserActionNativeVersion}.
 *
 * 
@author calvin
 * 
@see org.springside.core.web.StrutsEntityAction
 * 
@see org.springside.core.web.StrutsAction
 * 
@see UserActionNativeVersion
 
*/

public class UserAction extends StrutsEntityAction<User, UserManager> {

    @SuppressWarnings(
"unused")
    
private UserManager userManager;

    
public void setUserManager(UserManager userManager) {
        
this.userManager = userManager;
    }

}


然后是业务逻辑层,

package org.springside.helloworld.service;

import org.springside.core.dao.HibernateEntityDao;
import org.springside.helloworld.model.User;

/** *//**
 * 用户管理业务类.
 * <p/>
 * 继承于HibernateEntityDao,不需任何代码即拥有默认的对User对象的CRUD函数. 如果想了解不继承于EntityDao,自行编写CRUD的写法, 参考{
@link UserManagerNativeVersion}.
 *
 * 
@author calvin
 * 
@see HibernateEntityDao
 * 
@see org.springside.core.dao.HibernateGenericDao
 * 
@see UserManagerNativeVersion
 
*/

public class UserManager extends HibernateEntityDao<User> {
    
// .CRUD以外的其它商业方法
}

然后是模型层


package org.springside.helloworld.model;

import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;

/** *//**
 * 用户.带jpa annotation简版配置.
 *
 * 
@author calvin
 * 
@author schweigen
 
*/

 
//同USERS表映射
@Entity
@Table(name 
= "USERS")
public class User 
{
    
private Integer id;//用户id 

    
private String name;//用户名

    
private String email;//e-mail

    
private String descn;//自我介绍

    
//主键自动生成,其他,其余属性全部与数据库中的列默认映射。
    @Id
    @GeneratedValue(strategy 
= GenerationType.AUTO)
    
public Integer getId() {
        
return id;
    }


    
public void setId(Integer id) {
        
this.id = id;
    }


    
public String getName() {
        
return name;
    }


    
public void setName(String name) {
        
this.name = name;
    }


    
public String getEmail() {
        
return email;
    }


    
public void setEmail(String email) {
        
this.email = email;
    }


    
public String getDescn() {
        
return descn;
    }


    
public void setDescn(String descn) {
        
this.descn = descn;
    }

}



那么代码部分就这些了,可以看到不需要我们自己去写重复的CRUD代码,仅仅从一些特定的基类继承下来就可以了,而Jdk新加入的泛型技术的运用更是如虎添翼。那么对于配置文件部分,我个人感觉比以前好像更加复杂了呢,也许是还不习惯吧。。。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/407400.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

CSS之viewports剖析

1.设备的pixels和CSS的pixels 首先你应当理解CSS的pixels&#xff0c;以及它和设备的pixels的区别 我们姑且认定设备的pixels为标准的pixels宽度。这些pixels决定了你工作所用的那些设备上正式的分辨率。在大多数情况下&#xff0c;能够从screen.width/height上取出具体值 如…

9个好用的搜索小技巧

百度一下&#xff0c;你就知道。搜索是我们常用的工具&#xff0c;怎么又快又准的搜索出想要的结果是现代人必备的技能&#xff0c;下面就教你9个好用的搜索小技巧吧 1 . 完全匹配搜索。 在查询词的外边加上双引号“”。 如 “北京地坛” &#xff0c;注意引号是不分中英文的…

raw_input() 与 input() __ Python

>>> input ("my age is : ") my age is :23 23 >>> raw_input("my age is : ") my age is : 23 23 有什么不一样&#xff1f;再看一个例子 >>> age input(" how old r u ?") how old r u ?23 >>> p…

javascript学习系列(11):数组中的findIndex方法

最好的种树是十年前,其次是现在。歌谣 每天一个前端小知识 提醒你改好好学习了 知乎博主 csdn博主 b站博主 放弃很容易但是坚持一定很酷 我是歌谣 喜欢就一键三连咯 你得点赞是对歌谣最大的鼓励 1前言 在我们的日常开发中 不免会有很多需要处理数据的方法 本节主要说一说f…

系统监控

SAP系统监控在生产系统中&#xff0c;我们要根据实际需要来进行实时监控系统&#xff0c;目的是为了保证系统的平稳运行在ERP系统中&#xff0c;我们的生产系统会部署在各个服务器节点上&#xff0c;每台服务器对应的客户端节点又有很多个尤其是在系统压力比较大的时候&#xf…

PKU 1061 青蛙的约会

/*扩展欧几里德求模线性方程 感谢logic_space的指正*/#include <iostream>#defineabs(a) ((a)<0?-(a):(a))usingnamespacestd; __int64 exGCD(__int64 a, __int64 b, __int64 &x, __int64 &y) { if(b 0) { x 1; y 0; return…

小程序根据手机机型设置自定义底部导航距离

需求: iponeX 以上机型,手机底部有弧度,自己写的导航栏会被遮住, 需要判断手机机型,做兼容设置. 解决: //app.js App({/*** 当小程序初始化完成时&#xff0c;会触发 onLaunch&#xff08;全局只触发一次&#xff09;*/onLaunch: function() {var that this;//获取手机型号…

CSS之基于视窗单位的排版

1.使用视窗单位进行排版 这里还有一个为什么要考虑使用视窗单位进行排版的原因 - 根据客户端的浏览器&#xff0c;视窗单位会自动重新计算。这就意味着我们不需要显式声明媒体查询的字体大小 实例1&#xff1a;让我们用一个例子清楚地说明这一点 考虑下面的代码&#xff0c;…

C++ STL 遍历 map 的时候如何删除其中的 element

首先看一段他人的一段文章&#xff1a;from: http://www.cnblogs.com/super119/archive/2011/10/11/2207541.html 我们通过map的erase(iterator it)方法删除元素的时候&#xff0c;如果此时erase处于遍历map的代码中&#xff0c;那么调用erase就需要小心一些。因为erase会导致…

React开发(111):写注释的方法

放上去会显示(method) Template.getDictionary(): void

数据库范式(1NF 2NF 3NF BCNF)详解

数据库的设计范式是数据库设计所需要满足的规范&#xff0c;满足这些规范的数据库是简洁的、结构明晰的&#xff0c;同时&#xff0c;不会发生插入&#xff08;insert&#xff09;、删除&#xff08;delete&#xff09;和更新&#xff08;update&#xff09;操作异常。反之则是…

小程序页面跳转的几个方法和区别

目前小程序的几个页面跳转方式的主要区别就两点&#xff1a; 1.是否可以返回上一个页面2.目标页面是否是tabBar 两个通用属性 1.限制&#xff1a;目前页面路径最多只能十层。2.分类&#xff1a;wx.navigateTo 和 wx.redirectTo不允许跳转到 tabbar 页面&#xff0c;只能用 w…

再学 GDI+[98]: TGPImage(18) - 获取 GDI+ 图像格式对应的 GUID

和在 Net 中不同的是, 在具体指定图像格式时, 这里常常需要的不是格式名称, 而是格式的 GUID;知道了格式名称, 用 GetEncoderClsid 函数可以获取格式的 GUID;GetEncoderClsid 函数来自 GDIPUTIL 单元, 本例并没有用到前面一直不可或缺的 GDIPOBJ、GDIPAPI 单元.如果要获取 imag…

STL::map默认会按照.first的字母顺序排列

看个代码&#xff1a; // map默认会按照.first的字母顺序排列#include <map>#include <string>#include <iostream>using namespace std;int main(){map<string, string> map1;map<string, string>::iterator mapit;map<string, string>:…

JS之连接数组方法concat

作用&#xff1a;用于连接两个或多个数组&#xff0c;该方法不会改变现有的数组&#xff0c;而仅仅会返回被连接数组的一个副本 语法&#xff1a;arrayObject.concat(arrayX,arrayX,……,arrayX) 参数&#xff1a;arrayX&#xff0c;必需。该参数可以是具体的值&#xff0c;也…

configure: error: Curl library not foun

yum -y install curl-devel 转载于:https://www.cnblogs.com/lehao/p/3903189.html

微信小程序:生命周期

下面从三个方面来介绍小程序的生命周期&#xff1a; &#xff08;1&#xff09;应用生命周期 &#xff08;2&#xff09;页面生命周期 &#xff08;3&#xff09;应用及页面生命周期的触发顺序 1.应用生命周期 App() 必须在 app.js 中调用&#xff0c;必须调用且只能调用一次…

在.NET3.5平台上使用LinQ to SQL + NBear 创建三层WEB应用

看了《一步一步学Linq to sql》和《在.NET 3.5 平台上使用LINQ to SQL创建三层/多层Web应用系统》 这两个系列文章后,因为一直使用NBear,所以试着综合了一下主要用NBear.IOC其它的NBear.data里的就没有会了,相应的使用LINQ来做数据处理. 之前一直使用NBear做些WEB应用主要感觉N…

递归修改子目录及文件的权限

背景&#xff1a;当我们的虚拟机和windows系统共享windows上的一个目录(记为&#xff1a;A)时&#xff0c;把该目录下的目录(记为B)移动(mv)到linux下的任意目录下&#xff0c;这个目录B及下面的子目录或文件的权限都是rwx(777)&#xff0c;这是他们在windows下的权限。因此用l…