作者 朱兆平

init

# 通用IMF接收客户端框架
* 集成IMFjar包
* 集成Spring boot 及 srping cloud
* 集成websocket
* 可以在线查看imf客户端运行情况 路径
\ No newline at end of file
... ...
... ... @@ -15,10 +15,10 @@ import org.springframework.transaction.annotation.EnableTransactionManagement;
//@EnableEurekaClient
@EnableTransactionManagement
@MapperScan("com.tianbo.imfClient.dao")
public class WarehouseApplication {
public class ImfClientApplication {
public static void main(String[] args) {
SpringApplication.run(WarehouseApplication.class, args);
SpringApplication.run(ImfClientApplication.class, args);
}
}
... ...
package com.tianbo.imfClient.config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.socket.server.standard.ServerEndpointExporter;
@Configuration
public class WebSocketConfig {
@Bean
public ServerEndpointExporter serverEndpointExporter() {
return new ServerEndpointExporter();
}
}
... ...
package com.tianbo.imfClient.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class ErrorController {
@RequestMapping("/error1")
public String error(){
return "error";
}
}
... ...
package com.tianbo.imfClient.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
public class ImfLogController {
@RequestMapping("/log/imf")
public String IMFlog(){
return "/log/imf.html";
}
}
... ...
... ... @@ -23,7 +23,7 @@ public class IMF_Task {
public static String isNeedSend = "N";
@Scheduled(fixedRate = 5000)
// @Scheduled(fixedRate = 5000)
private static void start() throws Exception {
PropertyConfigurator.configure("config/log4j.properties");
client = IMFClientFactory.createInstance();
... ...
... ... @@ -7,7 +7,7 @@ server.servlet.context-path=${SERVER_CONTEXTPATH:}
web.upload-path=upload/
#表示所有的访问经过静态资源路径
springboot.mvc.static-path-pattern=/**
spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/static,classpath:/resources/,file:${web.upload-path}
spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/static,classpath:/resources/,classpath:/templates/,file:${web.upload-path}
... ...