摘要: public static void main(String[] args) { Jedis jedis = new Jedis("10.0.130.103",6379); jedis.lpush("task-queue", "123");//装入队列 jedis.lpush("task-queue", "456");//装入队列 ... 阅读全文
posted @ 2017-06-07 15:12 也许还年轻 阅读(1549) 评论(0) 推荐(0)
摘要: @ResponseBody @RequestMapping(value = "/upload.do", method = RequestMethod.POST) public String upload(String fileName, MultipartFile jarFile) { // 下面是测试代码 System.out.println(fileName)... 阅读全文
posted @ 2017-06-07 14:05 也许还年轻 阅读(14343) 评论(0) 推荐(1)