首页>代码>Springboot整合上传文件到阿里云OSS示例demo>/aliyun-oss/src/main/java/com/fei/action/UploadAction.java
package com.fei.action;

import com.fei.service.UploadService;
import com.fei.vo.UploadFile;
import org.springframework.context.annotation.Scope;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;

import javax.annotation.Resource;
import javax.servlet.ServletException;
import java.io.IOException;

/**
 * @ClassName: UploadAction.java
 * @Description: 
 * @Date: 2017年8月2日  上午8:39:36
 *
 */
@RestController
@RequestMapping(value = "/api")
@Scope("prototype")
public class UploadAction extends BaseAction {
	
	 @Resource
	 protected UploadService uploadService;
	/**
	 * 文件上传
	 * @param file
	 * @throws ServletException
	 * @throws IOException
	 */
	@RequestMapping(value = "/upload", method = RequestMethod.POST)
	public void uploadThumbImg(@RequestParam("uploadfile") MultipartFile file, @RequestParam(value = "fileUrl",required = false,defaultValue ="") String fileUrl) throws ServletException, IOException {
		 UploadFile uploadFile = uploadService.uploadFile(fileUrl,file);
         if(uploadFile!=null){
        	 printOperateSuccessJSON("上传成功!",uploadFile);
         }else{
        	 printOperateFailureJSON("上传失败!");
         }
	}
   
}
最近下载更多
912299793  LV21 3月30日
gchln1  LV5 2021年7月21日
newhaijun  LV15 2021年6月24日
1551862273  LV6 2020年11月26日
sky19961212  LV18 2020年11月12日
Stton丶C  LV3 2020年9月8日
sanstyle  LV2 2020年8月13日
tandechun  LV3 2020年6月10日
哈哈zr  LV11 2020年6月9日
renxiao123  LV17 2020年5月31日
最近浏览更多
TY0165  LV20 6月24日
912299793  LV21 3月30日
青柠编程  LV13 2023年5月22日
胡明杨 2023年5月15日
暂无贡献等级
哇塞塞哈哈哈  LV8 2023年5月4日
2022-09-19 2022年9月19日
暂无贡献等级
2468867327  LV10 2022年6月27日
qianxiaogeng 2022年5月20日
暂无贡献等级
徐超平  LV2 2022年3月21日
bbtoybbtoy 2022年3月21日
暂无贡献等级
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友