struts2 一个简洁的struts.xml

struts2 一个简洁的struts.xml

大家好,又见面了,我是全栈君,祝每个程序员都可以多学几门语言。

struts.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.1//EN" "http://struts.apache.org/dtds/struts-2.1.dtd">
<struts>
	<constant name="struts.ui.theme" value="simple"></constant>

	<package name="rx" extends="struts-default" namespace="/*">
		<action name="*_*" class="{1}Action" method="{2}">
			<result name="success">${successResultValue}</result>
			<result name="redirect" type="redirectAction" >${redirectResultValue}</result>
		</action>
	</package>
</struts>    

BaseAction.java

package com.yl.action;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;

import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionSupport;


public class BaseAction extends ActionSupport {

	/**
	 * 序列化ID
	 */
	private static final long serialVersionUID = 1L;

	protected String successResultValue;

	public String getSuccessResultValue() {
		return successResultValue;
	}

	public void setSuccessResultValue(String successResultValue) {
		this.successResultValue = successResultValue;
	}

	protected String redirectResultValue;

	public String getRedirectResultValue() {
		return redirectResultValue;
	}

	public void setRedirectResultValue(String redirectResultValue) {
		this.redirectResultValue = redirectResultValue;
	}

	protected String chainResultValue;

	public String getChainResultValue() {
		return chainResultValue;
	}

	public void setChainResultValue(String chainResultValue) {
		this.chainResultValue = chainResultValue;
	}

	/**
	 * 返回request对象
	 * 
	 * @return
	 */
	protected HttpServletRequest getRequest() {
		return ServletActionContext.getRequest();
	}

	/**
	 * 返回response对象
	 * 
	 * @return
	 */
	protected HttpServletResponse getResponse() {
		return ServletActionContext.getResponse();
	}

	/**
	 * 返回session对象
	 * 
	 * @return
	 */
	protected HttpSession getSession() {
		return getRequest().getSession();
	}
}

一个样例action:

package com.yl.action;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;

import javax.annotation.Resource;

import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;

import com.yl.biz.ImgBiz;
import com.yl.config.SysConfig;
import com.yl.cons.UploadResult;
import com.yl.entity.Img;
import com.yl.util.CipherUtil;

@Component("imgAction")
@Scope("prototype")
/**
 * 图片Action
 */
public class ImgAction extends BaseAction {

	/**
	 * 序列化ID
	 */
	private static final long serialVersionUID = 1L;

	/**
	 * 路径
	 */
	private File upload;

	public File getUpload() {
		return upload;
	}

	public void setUpload(File upload) {
		this.upload = upload;
	}

	/**
	 * 图片实体
	 */
	private Img img;

	public Img getImg() {
		return img;
	}

	public void setImg(Img img) {
		this.img = img;
	}

	/**
	 * 注入
	 */
	@SuppressWarnings("unused")
	@Resource(name = "imgBiz")
	private ImgBiz imgBiz;

	/**
	 * 图片上传
	 * 
	 * @return
	 */
	@SuppressWarnings("deprecation")
	public String uploadFile() {
		@SuppressWarnings("unused")
		String paths = getRequest().getRealPath("/");
		// 推断路径是否为空
		if (this.upload == null || !this.upload.isFile()
				|| !this.upload.canRead()) {
			this.addActionError(UploadResult.NULLFILE.getTitle());
			return SUCCESS;
		}
		try {
			FileInputStream fis = new FileInputStream(this.upload);
			// 获得图片大小
			int fileSize = fis.available();
			// 推断图片大小
			if (fileSize > SysConfig.MAX_FILE_SIZE) {
				this.addActionError(UploadResult.TooLargeFile.getTitle());
			} else {
				// 保存路径
				String path = SysConfig.PUBLIC_PATH;
				// 获取图片名字
				String fileName = this.upload.getName();
				// 推断是否有点
				if (!fileName.contains(".")) {
					this.addActionError(UploadResult.NOTIMG.getTitle());
				}
				// 截取文件类型
				fileName = fileName.substring(fileName.lastIndexOf("."));
				SimpleDateFormat sdf = new SimpleDateFormat(
						"yyyy-MM-dd HH:mm:ss aa");
				// 从新给图片命名
				fileName = CipherUtil.md5Encoding(sdf.format(new Date()))
						+ fileName;
				// 保存图片路径+图片名字
				fileName = path + "\\" + fileName;
				// New一个新的地址.
				File file = new File(fileName);
				// 输出图片到新的地址
				FileOutputStream fos = new FileOutputStream(file);
				int c;
				byte b[] = new byte[4 * 1024];
				while ((c = fis.read(b)) != -1) {
					fos.write(b, 0, c);
				}
				// 关闭相关操作
				fos.flush();
				fis.close();
				// 保存成功信息
				this.addActionError(UploadResult.SUCCESS.getTitle());
			}
		} catch (FileNotFoundException e) {
			// 保存失败信息
			this.addActionError(UploadResult.NULLFILE.getTitle());
			e.printStackTrace();
		} catch (IOException e) {
			// 保存失败信息
			this.addActionError(UploadResult.UPLOADFAIL.getTitle());
			e.printStackTrace();
		}
		// 设置返回页面
		setSuccessResultValue("/index.jsp");
		return SUCCESS;

	}

}

常量:

package com.yl.config;


import org.apache.struts2.ServletActionContext;
import org.springframework.beans.factory.InitializingBean;

/**
 * 图片系统类
 * 
 */
public class SysConfig implements InitializingBean {

	public static Boolean IS_DEBUG = true;
	

	/**
	 * 上传图片大小控制
	 */
	public static int MAX_FILE_SIZE = 1024 * 1024 * 100;

	/**
	 * 上传图片路径控制
	 */
	
	@SuppressWarnings("deprecation")
	public static String PUBLIC_PATH = ServletActionContext.getRequest().getRealPath("/") + "upload";

	private SysConfig() {
	}

	public static boolean isDebug() {
		return IS_DEBUG != null && IS_DEBUG;
	}

	public void setIS_DEBUG(Boolean iS_DEBUG) {
		IS_DEBUG = iS_DEBUG;
	}

	public void afterPropertiesSet() throws Exception {
	}
}

一个错误的结果enum封装,使用见action:

package com.yl.cons;

/**
 * 上传返回标志
 * 
 */
public enum UploadResult {
	SUCCESS((short) 0, "成功"), NULLFILE((short) 1, "找不到文件"), NOTIMG((short) 2,
			"非图片文件"), UPLOADFAIL((short) 3, "上传失败"), TooLargeFile((short) 4,
			"文件过大");
	/**
	 * 错误类型
	 */
	private short type;

	/**
	 * 错误名称
	 */
	private String title;

	private UploadResult(short type, String title) {
		this.type = type;
		this.title = title;
	}

	public short getType() {
		return type;
	}

	public String getTitle() {
		return title;
	}

}

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/118278.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • MySql Povit_MySQL pivot row成动态列数「建议收藏」

    MySql Povit_MySQL pivot row成动态列数「建议收藏」杨魅力不幸的是,MySQL没有PIVOT基本上你想要做的功能。因此,您需要使用带有CASE语句的聚合函数:selectpt.partner_name,count(casewhenpd.product_name=’ProductA’THEN1END)ProductA,count(casewhenpd.product_name=’ProductB’THEN1…

    2022年10月30日
  • linux 查看文件内容 显示行号

    linux 查看文件内容 显示行号怎么在linux系统中查看文件时显示行号?1.使用vi或者vim命令打开文件打开后的文件内容日如下2.直接输入以下命令,按Ente健显示文件行号:setnu或者:setnumber成功后显示如下…

  • phpstorm激活码2021.5.1[在线序列号]

    phpstorm激活码2021.5.1[在线序列号],https://javaforall.cn/100143.html。详细ieda激活码不妨到全栈程序员必看教程网一起来了解一下吧!

  • 安卓转移到苹果手机_苹果手机更换安卓手机怎么备份

    安卓转移到苹果手机_苹果手机更换安卓手机怎么备份通常我们使用手机时间长了之后,手机开始变得卡顿,常常出现内存不足的情况。这种时候不外乎两种情况:一是将手机格式化或还原出厂设置;二是买个新手机。这样做的结果就是手机的数据被删除或是数据留在旧手机内却不能完整的转移到新手机中。那我们该怎么做才能两全其美呢?下面小编就来介绍关于安卓手机和苹果手机如何备份和恢复手机数据的使用方法。一、安卓手机的备份和恢复小米手机里有一个特别的功能

  • JAX-WS手动配置实例

    JAX-WS手动配置实例随着近几年来,SOA,EAI等架构体系的日渐成熟,Webservice越来越炽手可热,尤其是在企业做异质平台整合时成为了首选的技术。Java的Webservice技术更是层出不穷,比较流行的有:  Axis2,SpringWS以及Jaxws。   本人在日常工作和以往工程中,在使用了上述这些Webservice后进行了总结,比较,最终觉得jaxws是目前最标准,需要额外第三方插件

  • vue 引入js文件中的方法,在html中使用报错的问题「建议收藏」

    vue 引入js文件中的方法,在html中使用报错的问题「建议收藏」1.创建了一个common.js2.引入到vue文件中3.在html使用它4.发现报错5.解决报错,只需要在methods中声明一下它

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号