FileAction.java 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. package com.post.action;
  2. import org.apache.struts2.ServletActionContext;
  3. import org.apache.struts2.convention.annotation.Action;
  4. import org.apache.struts2.convention.annotation.Result;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import com.opensymphony.xwork2.ModelDriven;
  7. import com.post.pageModel.File;
  8. import com.post.pageModel.Json;
  9. import com.post.service.FileServiceI;
  10. /**
  11. * 文件
  12. */
  13. @Action(value = "fileAction", results = {
  14. @Result(name = "fileManager", location = "/busi/file/fileManager.jsp"),
  15. @Result(name = "fileAdd", location = "/busi/file/fileAdd.jsp"),
  16. @Result(name = "fileEdit", location = "/busi/file/fileEdit.jsp"),
  17. @Result(name = "showContent", location = "/busi/file/showContent.jsp")})
  18. public class FileAction extends BaseAction implements ModelDriven<File> {
  19. private File file = new File();
  20. private FileServiceI fileService;
  21. public FileServiceI getFileService() {
  22. return fileService;
  23. }
  24. @Autowired
  25. public void setFileService(FileServiceI fileService) {
  26. this.fileService = fileService;
  27. }
  28. @Override
  29. public File getModel() {
  30. return file;
  31. }
  32. public String fileManager() {
  33. return "fileManager";
  34. }
  35. public String fileAdd() {
  36. return "fileAdd";
  37. }
  38. public String fileEdit() {
  39. return "fileEdit";
  40. }
  41. public void do_datagrid() {
  42. super.writeJsonDate(fileService.datagrid(file));
  43. }
  44. public void add() {
  45. Json j = new Json();
  46. try {
  47. fileService.add(file);
  48. j.setSuccess(true);
  49. j.setMsg("添加成功!");
  50. } catch (Exception e) {
  51. j.setMsg("添加失败!");
  52. }
  53. super.writeJson(j);
  54. }
  55. public void edit() {
  56. Json j = new Json();
  57. try {
  58. fileService.edit(file);
  59. j.setSuccess(true);
  60. j.setMsg("编辑成功!");
  61. } catch (Exception e) {
  62. j.setMsg("编辑失败!");
  63. }
  64. super.writeJson(j);
  65. }
  66. public void delete() {
  67. Json j = new Json();
  68. fileService.delete(file);
  69. j.setSuccess(true);
  70. j.setMsg("删除成功!");
  71. super.writeJson(j);
  72. }
  73. public void do_combobox() {
  74. super.writeJson(fileService.combobox());
  75. }
  76. }