|
@@ -4,9 +4,7 @@ import java.text.ParseException;
|
|
|
import java.text.SimpleDateFormat;
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.Dictionary;
|
|
|
-import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
-import java.util.Map;
|
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
@@ -14,8 +12,8 @@ import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
import com.kxs.adminap.config.Base;
|
|
|
-import com.kxs.adminap.dao.TestTablerepository;
|
|
|
-import com.kxs.adminap.enity.TestTable;
|
|
|
+// import com.kxs.adminap.dao.TestTablerepository;
|
|
|
+// import com.kxs.adminap.enity.TestTable;
|
|
|
import com.kxs.adminap.service.DbConn;
|
|
|
import com.kxs.adminap.util.RedisUtils;
|
|
|
|
|
@@ -24,8 +22,8 @@ import jakarta.annotation.Resource;
|
|
|
@RestController
|
|
|
public class TestController {
|
|
|
|
|
|
- @Autowired
|
|
|
- private TestTablerepository testTablerepository;
|
|
|
+ // @Autowired
|
|
|
+ // private TestTablerepository testTablerepository;
|
|
|
|
|
|
@Resource
|
|
|
RedisUtils redisUtils;
|
|
@@ -36,93 +34,93 @@ public class TestController {
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
- @RequestMapping("/test")
|
|
|
- public String test() {
|
|
|
- String result = "ok";
|
|
|
+ // @RequestMapping("/test")
|
|
|
+ // public String test() {
|
|
|
+ // String result = "ok";
|
|
|
|
|
|
- // redisUtils.set("javaset", "ohyeah");
|
|
|
- // result += redisUtils.get("javaset");
|
|
|
+ // // redisUtils.set("javaset", "ohyeah");
|
|
|
+ // // result += redisUtils.get("javaset");
|
|
|
|
|
|
- // redisUtils.set("hahaha", "咔咔咔咔");
|
|
|
- // result += redisUtils.get("hahaha");
|
|
|
+ // // redisUtils.set("hahaha", "咔咔咔咔");
|
|
|
+ // // result += redisUtils.get("hahaha");
|
|
|
|
|
|
- // redisUtils.set("kkk", 123);
|
|
|
- // result += redisUtils.getInteger("kkk");
|
|
|
+ // // redisUtils.set("kkk", 123);
|
|
|
+ // // result += redisUtils.getInteger("kkk");
|
|
|
|
|
|
- TestTable d = testTablerepository.findById(2).get();
|
|
|
- redisUtils.addList("test:list", d);
|
|
|
+ // TestTable d = testTablerepository.findById(2).get();
|
|
|
+ // redisUtils.addList("test:list", d);
|
|
|
|
|
|
- return result;
|
|
|
- }
|
|
|
+ // return result;
|
|
|
+ // }
|
|
|
|
|
|
@RequestMapping("/test2")
|
|
|
public List<Object> test2() {
|
|
|
return redisUtils.getList("test:list");
|
|
|
}
|
|
|
|
|
|
- @RequestMapping("/test3")
|
|
|
- public TestTable test3() {
|
|
|
- return (TestTable)redisUtils.getList("test:list").get(0);
|
|
|
- }
|
|
|
+ // @RequestMapping("/test3")
|
|
|
+ // public TestTable test3() {
|
|
|
+ // return (TestTable)redisUtils.getList("test:list").get(0);
|
|
|
+ // }
|
|
|
|
|
|
- @RequestMapping("/add")
|
|
|
- public String add() {
|
|
|
- String result = "ok";
|
|
|
+ // @RequestMapping("/add")
|
|
|
+ // public String add() {
|
|
|
+ // String result = "ok";
|
|
|
|
|
|
- TestTable d = new TestTable();
|
|
|
- d.setName("测试java");
|
|
|
- try {
|
|
|
- d.setCreateDate(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse("2023-07-07 15:15:15"));
|
|
|
- } catch (ParseException e) {
|
|
|
- e.printStackTrace();
|
|
|
- }
|
|
|
- d.setSex(12345d);
|
|
|
- d.setContents("水电费及时反馈海上繁花科技<br>asdasdasd");
|
|
|
- d.setIsOk(true);
|
|
|
-
|
|
|
- testTablerepository.save(d);
|
|
|
-
|
|
|
- return result;
|
|
|
- }
|
|
|
-
|
|
|
- @RequestMapping("/update")
|
|
|
- public String update(Integer id) {
|
|
|
- String result = "ok";
|
|
|
+ // TestTable d = new TestTable();
|
|
|
+ // d.setName("测试java");
|
|
|
+ // try {
|
|
|
+ // d.setCreateDate(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse("2023-07-07 15:15:15"));
|
|
|
+ // } catch (ParseException e) {
|
|
|
+ // e.printStackTrace();
|
|
|
+ // }
|
|
|
+ // d.setSex(12345d);
|
|
|
+ // d.setContents("水电费及时反馈海上繁花科技<br>asdasdasd");
|
|
|
+ // d.setIsOk(true);
|
|
|
+
|
|
|
+ // testTablerepository.save(d);
|
|
|
+
|
|
|
+ // return result;
|
|
|
+ // }
|
|
|
+
|
|
|
+ // @RequestMapping("/update")
|
|
|
+ // public String update(Integer id) {
|
|
|
+ // String result = "ok";
|
|
|
|
|
|
- TestTable d = testTablerepository.findById(id).get();
|
|
|
- d.setName("修改名称");
|
|
|
- d.setContents("修改的内容");
|
|
|
+ // TestTable d = testTablerepository.findById(id).get();
|
|
|
+ // d.setName("修改名称");
|
|
|
+ // d.setContents("修改的内容");
|
|
|
|
|
|
- testTablerepository.save(d);
|
|
|
+ // testTablerepository.save(d);
|
|
|
|
|
|
- return result;
|
|
|
- }
|
|
|
+ // return result;
|
|
|
+ // }
|
|
|
|
|
|
- @RequestMapping("/delete")
|
|
|
- public String delete(Integer id) {
|
|
|
- String result = "ok";
|
|
|
+ // @RequestMapping("/delete")
|
|
|
+ // public String delete(Integer id) {
|
|
|
+ // String result = "ok";
|
|
|
|
|
|
- testTablerepository.deleteById(id);
|
|
|
+ // testTablerepository.deleteById(id);
|
|
|
|
|
|
- return result;
|
|
|
- }
|
|
|
+ // return result;
|
|
|
+ // }
|
|
|
|
|
|
- @RequestMapping("/all")
|
|
|
- public @ResponseBody Iterable<TestTable> getAll() {
|
|
|
- return testTablerepository.findAll();
|
|
|
- }
|
|
|
+ // @RequestMapping("/all")
|
|
|
+ // public @ResponseBody Iterable<TestTable> getAll() {
|
|
|
+ // return testTablerepository.findAll();
|
|
|
+ // }
|
|
|
|
|
|
- @RequestMapping("/one")
|
|
|
- public @ResponseBody TestTable getOne(Integer id) {
|
|
|
- var item = testTablerepository.findById(id);
|
|
|
- return item.orElse(new TestTable());
|
|
|
- }
|
|
|
+ // @RequestMapping("/one")
|
|
|
+ // public @ResponseBody TestTable getOne(Integer id) {
|
|
|
+ // var item = testTablerepository.findById(id);
|
|
|
+ // return item.orElse(new TestTable());
|
|
|
+ // }
|
|
|
|
|
|
- @RequestMapping("/search")
|
|
|
- public @ResponseBody Iterable<TestTable> getSearch() {
|
|
|
- var item = testTablerepository.findByCondition("name='测试java'");
|
|
|
- return item;
|
|
|
- }
|
|
|
+ // @RequestMapping("/search")
|
|
|
+ // public @ResponseBody Iterable<TestTable> getSearch() {
|
|
|
+ // var item = testTablerepository.findByCondition("name='测试java'");
|
|
|
+ // return item;
|
|
|
+ // }
|
|
|
|
|
|
|
|
|
@RequestMapping("/sql")
|