struts2中类型转换实例代码

网友投稿 233 2023-03-25


struts2中类型转换实例代码

类型转换

所有的页面与控制器传递的数据都是String类型,在对其进行处理时可能会用到各种的数据类型,程序无法自动完成数据类型的转换,这就需要我们在代码中进行手手动操作,这个过程就称为类型转换。

内置类型转换器

在Web应用程序中,用户在视图层输入的数据都是字符串,业务控制层在处理这些数据时,就必须把从视图层传递过来的字符串进行类型转换。Struts2提供了简单易用的数据类型转换机制,struts2提供的类型转换如下:

1)String:将int、long、double、boolean、String类型的数组对象转换为字符串

       2)boolean/Boolean:在字符串和布尔值之间进行转换

       3)char/Character:在字符串和字符之间进行转换

       4)int/Integer,float/Float、long/Long、double/Double:在字符串和数值类型的数据之间进行转换

       5)Date:在字符串和日期类之间进行转换。对于日期类型,采用SHORT格式来处理输入和输出,使用当前请求关联的Locale来确定日期格式

      6)数组类型(Array):由于数组元素本身就有类型,struts2使用元素类型对应的类型转换器,将字符串转换为数组元素的类型,然后再设置到新的数组中

      7)Collection、List、Set:struts2会将用户提交的字符串数据使用request对象的getparameterValues(string str)方法,将返回的字符串数据转换成集合类型

OGNL表达式

Struts2框架支持OGNL表达式,通过OGNL表达式可以将用户请求转换为复合类型。

使用类型转换注解

Struts2提供了一些类型转换注解来配置转换器,使得能够代替ClassName-conversion.properties文件,其中包括以下注解:

1)TypeConversion注解。该注解应用于属性和方法级别。

       2)Conversion注解。Conversion注解让类型转换应用到类型级别,即可以应用到类、接口或枚举声明。该注解只有一个参数conversions。

       3)Element注解。Element注解用于指定Collection或Map中的元素类型,该注解只能用于字段或方法级别。

       4)Key注解。Key注解用于指定Map中的Key的类型,该注解只能用于字段或方法级别。

       5)KeyProperty注解。Keyproperty注解指定用于索引集合元素中的属性名,该注解只适用于字段或方法级别

       6)CreatelfNull注解。CreateifNull注解指定在引用的集合元素为null时,是否让框架重新创建该集合元素。该注解只适用于字段或方法级别

一个简单的添加商品信息的实例:

在配置好Struts2环境后,

  商品类:

package com.mxl.entity;

public class Product {

private String name;//商品名称

private double price;//商品价格

private int num;//入库数量

private String content;//商品描述

public String getName() {

return name;

}

public void setName(String name) {

this.name = name;

}

public double getPrice() {

return price;

}

public void setPrice(double price) {

this.price = price;

}

public int getNum() {

return num;

}

public void setNum(int num) {

this.num = num;

}

public String getContent() {

return content;

}

public void setContent(String content) {

this.content = content;

}

}

Action:

package com.mxl.actions;

import com.mxl.entity.Product;

import com.opensymphony.xwork2.ActionSupport;

public class ProductAction extends ActionSupport{

private Product product;

public Product getProduct() {

return product;

}

public void setProduct(Product product) {

this.product = product;

}

@Override

public String execute() throws Exception {

return SUCCESS;

}

}

struts.xml中的配置:

/pro_success.jsp

添加成功页面:

<%@ taglib prefix="s" uri="/struts-tags" %>

商品名称:

商品价格:

入库数量:

商品描述:

自定义类型转换器实例:

package com.mxl.converter;

import java.util.Map;

import org.apache.struts2.util.StrutsTypeConverter;

import com.mxl.entity.Product;

public class ProductConverter extends StrutsTypeConverter{

@Override

public Object convertFromString(Map context, String[] values, Class toClass) {

Product pro = new Product();//实例化该类

String[] proValues = values[0].split("/");//将传递过来的数组中的第一个元素以“/”分隔并组成新的数组

pro.setName(proValues[0]);//将新数组中的第一个元素赋值给product类中name属性

pro.setPrice(doubleValue(proValues[1]));//将新数组中的第二个元素赋值给product类中price属性

pro.setNum(Integer.parseInt(proValues[2]));//将新数组中的第三个元素赋值给product类中num属性

pro.setContent(proValues[3]);//将新数组中的第4个元素赋值给product类中content属性

return pro;

}

@Override

public String convertToString(Map context, Object obj) {

Product pro = (Product)obj;

return "";

}

}

商品类使用的是上边的那个类,Action,

package com.mxl.actions;

import com.mxl.entity.Product;

import com.opensymphony.xwork2.ActionSupport;

public class ProConverterAction extends ActionSupport{

private Product product1;

private Product product2;

public Product getProduct1() {

return product1;

}

public void setProduct1(Product product1) {

this.product1 = product1;

}

public Product getProduct2() {

return product2;

}

public void setProduct2(Product product2) {

this.product2 = product2;

}

@Override

public String execute() throws Exception {

return SUCCESS;

}

}

配置:

/pro_list.jsp

添加一个全局类型转换器:

xwork-conversion.properties,

com.mxl.entity.Product=com.mxl.converter.ProductConverter

添加界面:

在文本框中依次输入商品的名称、价格入库数量和描述之间使用“/”分隔

添加成功后的跳转界面:

复合类型转换异常处理实例:

User类,

package com.mxl.entity;

import java.util.Date;

public class User {

private String username;//用户名

private String password;//密码

private String realname;//真实姓名

yxdrjlvvJj private int age;//年龄

private Date birthday;//生日

private String address;//家庭住址

public String getUsername() {

return username;

}

public void setUsername(String username) {

this.username = username;

}

public String getPassword() {

return password;

}

public void setPassword(String password) {

this.password = password;

}

public String getRealname() {

return realname;

}

public void setRealname(String realname) {

this.realname = realname;

}

public int getAge() {

return age;

}

public void setAge(int age) {

this.age = age;

}

public Date getBirthday() {

return birthday;

}

public void setBirthday(Date birthday) {

this.birthday = birthday;

}

public String getAddress() {

return address;

}

public void setAddress(String address) {

this.address = address;

}

}

配置:

/user_success.jsp

/user_regist.jsp

添加局部资源文件:

User-ExceptionAction.properties,

内容:

invalid.fieldvalue.user.age=会员年龄必须为整数

invalid.fieldvalue.user.birthday=会员出生日期必须为日期格式

注册页面Z:

[html] view plain copy print?

跳转界面:

用户名:

密码:

真实姓名:

年龄:

出生日期:

家庭住址:

总结

以上就是本文关于struts2中类型转换实例代码的全部内容,希望对大家有所帮助。感兴趣的朋友可以参阅本站:Struts2 通过ognl表达式实现投影、struts2开发流程及详细配置、Struts2修改上传文件大小限制方法解析等,如有不足之处,欢迎留言指出。下面推荐几本相关书籍下载,供大家学习参考。也希望朋友们对本站多多支持!

一键下载,免费的哦:

Java虚拟机规范(Java SE 8版) PDF

//jb51.net/books/581230.html

阿里巴巴Java开发手册(v1.2.0正式版)pdf版

//jb51.net/books/575715.html

希望大家能够喜欢。


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:管理后端接口的平台是什么(后端管理是什么意思)
下一篇:Java实现身份证号码验证源码示例分享
相关文章

 发表评论

暂时没有评论,来抢沙发吧~