// ConfigurableEnvironment envMutablePropertySources propertySources = env.getPropertySources();Map<String, Object> map = new HashMap<>();map.put(myObject.getKey(), myObject.getQuery());propertySources .addFirst(new MapPropertySource("newmap", map));


