SocketConfig.java 321 B

1234567891011121314
  1. package com.fs.qw.config;
  2. import org.springframework.beans.factory.annotation.Value;
  3. import org.springframework.context.annotation.Configuration;
  4. @Configuration
  5. public class SocketConfig {
  6. // @Value("${socket.url}")
  7. private String socketUrl;
  8. public String getSocketUrl() {
  9. return socketUrl;
  10. }
  11. }