| 123456789101112131415161718192021222324252627282930313233 |
- //package com.fdkankan.scene.config;
- //
- //import com.fdkankan.mvp.factory.InitFactory;
- //import javax.annotation.PostConstruct;
- //import org.springframework.beans.factory.annotation.Value;
- //import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
- //import org.springframework.context.annotation.Configuration;
- //
- ///**
- // * <p>
- // * TODO
- // * </p>
- // *
- // * @author dengsixing
- // * @since 2022/9/8
- // **/
- //@Configuration
- //public class MvpConfig {
- //
- // @Value("${sip.scheme:http}")
- // private String scheme;
- // @Value("${sip.ip:127.0.0.1}")
- // private String ip;
- // @Value("${sip.port:18080}")
- // private String port;
- //
- // @ConditionalOnProperty(name = "sip.init",havingValue = "true")
- // @PostConstruct
- // public void initSip(){
- // InitFactory.init(scheme, ip, port);
- // }
- //
- //}
|