TestController.java 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. package com.kxs.adminap.controller;
  2. import java.text.ParseException;
  3. import java.text.SimpleDateFormat;
  4. import java.util.Dictionary;
  5. import java.util.List;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.web.bind.annotation.RequestMapping;
  8. import org.springframework.web.bind.annotation.ResponseBody;
  9. import org.springframework.web.bind.annotation.RestController;
  10. import com.kxs.adminap.dao.TestTablerepository;
  11. import com.kxs.adminap.enity.TestTable;
  12. import com.kxs.adminap.service.DbConn;
  13. import com.kxs.adminap.util.RedisUtils;
  14. import jakarta.annotation.Resource;
  15. @RestController
  16. public class TestController {
  17. @Autowired
  18. private TestTablerepository testTablerepository;
  19. @Resource
  20. RedisUtils redisUtils;
  21. @RequestMapping("/")
  22. public String home() {
  23. String result = "hey,java";
  24. return result;
  25. }
  26. @RequestMapping("/test")
  27. public String test() {
  28. String result = "ok";
  29. // redisUtils.set("javaset", "ohyeah");
  30. // result += redisUtils.get("javaset");
  31. // redisUtils.set("hahaha", "咔咔咔咔");
  32. // result += redisUtils.get("hahaha");
  33. // redisUtils.set("kkk", 123);
  34. // result += redisUtils.getInteger("kkk");
  35. TestTable d = testTablerepository.findById(2).get();
  36. redisUtils.addList("test:list", d);
  37. return result;
  38. }
  39. @RequestMapping("/test2")
  40. public List<Object> test2() {
  41. return redisUtils.getList("test:list");
  42. }
  43. @RequestMapping("/test3")
  44. public TestTable test3() {
  45. return (TestTable)redisUtils.getList("test:list").get(0);
  46. }
  47. @RequestMapping("/add")
  48. public String add() {
  49. String result = "ok";
  50. TestTable d = new TestTable();
  51. d.setName("测试java");
  52. try {
  53. d.setCreateDate(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse("2023-07-07 15:15:15"));
  54. } catch (ParseException e) {
  55. e.printStackTrace();
  56. }
  57. d.setSex(12345d);
  58. d.setContents("水电费及时反馈海上繁花科技<br>asdasdasd");
  59. d.setIsOk(true);
  60. testTablerepository.save(d);
  61. return result;
  62. }
  63. @RequestMapping("/update")
  64. public String update(Integer id) {
  65. String result = "ok";
  66. TestTable d = testTablerepository.findById(id).get();
  67. d.setName("修改名称");
  68. d.setContents("修改的内容");
  69. testTablerepository.save(d);
  70. return result;
  71. }
  72. @RequestMapping("/delete")
  73. public String delete(Integer id) {
  74. String result = "ok";
  75. testTablerepository.deleteById(id);
  76. return result;
  77. }
  78. @RequestMapping("/all")
  79. public @ResponseBody Iterable<TestTable> getAll() {
  80. return testTablerepository.findAll();
  81. }
  82. @RequestMapping("/one")
  83. public @ResponseBody TestTable getOne(Integer id) {
  84. var item = testTablerepository.findById(id);
  85. return item.orElse(new TestTable());
  86. }
  87. @RequestMapping("/search")
  88. public @ResponseBody Iterable<TestTable> getSearch() {
  89. var item = testTablerepository.findByCondition("name='测试java'");
  90. return item;
  91. }
  92. @RequestMapping("/sql")
  93. public List<Dictionary<String, Object>> sql() {
  94. return DbConn.Query("select * from ApiVersion");
  95. }
  96. @RequestMapping("/sqlop")
  97. public String sqlop(Integer id) {
  98. DbConn.Op("delete from ApiVersion where Id=" + id);
  99. return "ok";
  100. }
  101. }