- 将 RuoYiConfig.getProfile() 方法替换为 RuoYiConfig.getMyPath()
IOT
zch 2 months ago
parent 129963e5b7
commit 7508f27513

@ -120,7 +120,7 @@ public class RecordBusbarTempController extends BaseController
@GetMapping("/getVisiblePhoto/{filePath}") @GetMapping("/getVisiblePhoto/{filePath}")
public ResponseEntity<FileSystemResource> getVisiblePhoto(@PathVariable String filePath) { public ResponseEntity<FileSystemResource> getVisiblePhoto(@PathVariable String filePath) {
// 获取配置文件中的路径application.yml的profile // 获取配置文件中的路径application.yml的profile
String myPath = RuoYiConfig.getProfile(); String myPath = RuoYiConfig.getMyPath();
// 构建文件的完整路径 // 构建文件的完整路径
String fileUrl = myPath + "/日志信息/可见光图像/" + filePath; String fileUrl = myPath + "/日志信息/可见光图像/" + filePath;
// 创建文件对象 // 创建文件对象
@ -166,7 +166,7 @@ public class RecordBusbarTempController extends BaseController
@GetMapping("/getThermalPhoto/{filePath}") @GetMapping("/getThermalPhoto/{filePath}")
public ResponseEntity<FileSystemResource> getThermalPhoto (@PathVariable String filePath) { public ResponseEntity<FileSystemResource> getThermalPhoto (@PathVariable String filePath) {
// 获取配置文件中的路径application.yml的profile // 获取配置文件中的路径application.yml的profile
String myPath = RuoYiConfig.getProfile(); String myPath = RuoYiConfig.getMyPath();
// 构建完整的文件路径 // 构建完整的文件路径
String fileUrl = myPath + "/日志信息/红外热成像/" + filePath; String fileUrl = myPath + "/日志信息/红外热成像/" + filePath;
// 创建文件对象 // 创建文件对象

@ -130,7 +130,7 @@ public class RecordInspectionCabinetController extends BaseController
@GetMapping("/getThermalVideo/{filePath}") @GetMapping("/getThermalVideo/{filePath}")
public ResponseEntity<FileSystemResource> getThermalVideo(@PathVariable String filePath) { public ResponseEntity<FileSystemResource> getThermalVideo(@PathVariable String filePath) {
// 获取配置文件中的路径application.yml的profile // 获取配置文件中的路径application.yml的profile
String myPath = RuoYiConfig.getProfile(); String myPath = RuoYiConfig.getMyPath();
// 构建完整的文件路径 // 构建完整的文件路径
String fileUrl = myPath + "/日志信息/巡检录像/热成像/" + filePath; String fileUrl = myPath + "/日志信息/巡检录像/热成像/" + filePath;
// 创建文件对象 // 创建文件对象
@ -172,7 +172,7 @@ public class RecordInspectionCabinetController extends BaseController
@GetMapping("/getVisibleVideo/{filePath}") @GetMapping("/getVisibleVideo/{filePath}")
public ResponseEntity<FileSystemResource> getVisibleVideo(@PathVariable String filePath) { public ResponseEntity<FileSystemResource> getVisibleVideo(@PathVariable String filePath) {
// 获取配置文件中的路径application.yml的profile // 获取配置文件中的路径application.yml的profile
String myPath = RuoYiConfig.getProfile(); String myPath = RuoYiConfig.getMyPath();
// 构建完整的文件路径 // 构建完整的文件路径
String fileUrl = myPath + "/日志信息/巡检录像/可见光/" + filePath; String fileUrl = myPath + "/日志信息/巡检录像/可见光/" + filePath;
// 创建文件对象 // 创建文件对象

Loading…
Cancel
Save