-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestController.java
More file actions
82 lines (73 loc) · 2.05 KB
/
Copy pathTestController.java
File metadata and controls
82 lines (73 loc) · 2.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package controller;
import com.alibaba.fastjson.JSON;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import common.Excel.ExcelUtil;
import domain.Book;
import impl.MailServiceImpl;
import lombok.SneakyThrows;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.http.HttpRequest;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import redis.clients.jedis.JedisCluster;
import service.MailService;
import service.ShareService;
import vo.MailVo;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
@Controller
@RequestMapping("/main")
/**
* @author wangzhenxing
*/
public class TestController {
// @Autowired
// private ShareService shareService;
@Autowired
private MailService mailService;
@Autowired
private JedisCluster jedisCluster;
/**
* 获取数据合并分支sssssss
* @return
*/
// @RequestMapping("/userData")
// @ResponseBody
// @SneakyThrows
// public List<Book> userData(){
// HashMap<String, Object> map = Maps.newHashMap();
// List<Book> list = shareService.findShare(map);
// return list;
// }
/**
* 主页
* @return
*/
@RequestMapping("/index")
public String index(){
return "index_v1";
}
@RequestMapping("/user")
public String user(){
return "user";
}
/**
* 发送邮件
*/
@RequestMapping("/message")
@ResponseBody
public void message(){
try {
MailVo mailVo = mailService.sendFinalDispatchFailedMail("嘿嘿", "ss", "12156416545", "好名字哦", "编号");
}catch (Exception e){
System.out.println(e.getMessage());
}
}
}