WIP: dc-feature #14

Manually merged
lpz merged 12 commits from dc-feature into main 2025-06-05 10:57:09 +08:00
101 changed files with 1530 additions and 2825 deletions
Showing only changes of commit ee8e4709a6 - Show all commits

View File

@ -0,0 +1,16 @@
package com.bipt.intelligentapplicationorchestrationservice.utils;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
@Component
public class ConfigConstants {
@Value("${model.deploy.port:8080}")
public int MODEL_PORT;
@Value("${model.deploy.url-template:http://%s:%d/model/%s/%s}")
public String URL_TEMPLATE;
@Value("${model.deploy.script-timeout:300}")
public int SCRIPT_TIMEOUT_SECONDS;
}