作者 朱兆平

可忽略这个提交,改一些开始没弄好的地方

... ... @@ -23,4 +23,4 @@
* 集成lombok,简化部分代码录入,比如实体类,方便实体及表结构修改,敏捷开发必用,使用方法见[lombok集成使用说明](https://jingyan.baidu.com/article/0a52e3f4e53ca1bf63ed725c.html)
)
* 集成了单文件、多文件上传接口
* 集成了swagger2,开发环境开启此POM配置,生产环境记得去掉。包冲突问题看POM配置文件。
\ No newline at end of file
* 集成了swagger2,开发环境开启此POM配置,生产环境记得去掉。包冲突问题看POM配置文件。[接口访问测试地址](http://localhost:7003/swagger-ui.html)
\ No newline at end of file
... ...
... ... @@ -5,7 +5,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
public class ImfLog {
public class ImfLogController {
@RequestMapping("/log/imf")
... ...
... ... @@ -15,7 +15,7 @@ import java.util.concurrent.CopyOnWriteArraySet;
@ServerEndpoint(value = "/log")
@Component
public class Log {
public class LogWebsockController {
private Process process;
private InputStream inputStream;
//与某个客户端的连接会话,需要通过它来给客户端发送数据
... ... @@ -24,7 +24,7 @@ public class Log {
//静态变量,用来记录当前在线连接数。应该把它设计成线程安全的。
private static int onlineCount = 0;
//concurrent包的线程安全Set,用来存放每个客户端对应的MyWebSocket对象。
private static CopyOnWriteArraySet<Log> webSocketSet = new CopyOnWriteArraySet<Log>();
private static CopyOnWriteArraySet<LogWebsockController> webSocketSet = new CopyOnWriteArraySet<LogWebsockController>();
@OnOpen
... ... @@ -67,7 +67,7 @@ public class Log {
}
public static synchronized void addOnlineCount() {
Log.onlineCount++;
LogWebsockController.onlineCount++;
}
public static synchronized int getOnlineCount() {
return onlineCount;
... ...
... ... @@ -4,9 +4,9 @@ import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class Login {
public class LoginController {
@RequestMapping("/loginPage")
@RequestMapping("/login")
public String login(){
return "login";
}
... ...