-
Notifications
You must be signed in to change notification settings - Fork 104
spring-cloud-connectors is deprecated #74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I've struggled with this because it's not a matter of what services are supported so much as what applications are supported. The big blocker to migrating is that |
@nebhale Ok, understood! Maybe there's a half-way solution where we could detect boot and add java-cfenv rather than connectors? Barring that, we could detect java-cfenv and skip the connectors reconfiguration step? As of now, java-cfenv blows up if connectors is detected on the classpath; so users are forced to disable the java-buildpack-auto-reconfiguration altogether. |
Maybe something there. Let me chat with @markpollack about the best way to manage this. |
Sounds good! FYI I've taken over maintenance of java-cfenv, ICYMI. |
Closing. We have begun deprecating Spring Auto Reconfiguration from the buildpack. |
We have a spring boot application (version 1.5.9.RELEASE) that is deployed in PCF and works fine. We are trying to migrate it to java-cfenv-boot library by following the migration guide and removing the dependencies it suggests. However, we encounter a problem with the centralized configuration. The application fails to get the placeholder values from the Spring Cloud Config Server (bound to PCF). removed added io.pivotal.cfenv java-cfenv-boot 2.4.0
and we use java_buildpack_offline Please suggest to fix the issue. |
@dev-praveen You should file a new issue. This one's been closed for going-on two years. |
Usage of spring-cloud-connectors is deprecated in favour of java-cfenv.
https://github.com/pivotal-cf/java-cfenv
The module java-cfenv-boot presently includes support for mongodb, cassandra, redis, rabbitmq, and jdbc/datasource. The only thing I can see in java-buildpack-auto-reconfiguration's
CloudServiceReconfigurationBeanFactoryPostProcessor
that isn't directly supported by java-cfenv is javamail. If javamail support was added, it seems like a good chunk of the auto-reconfiguration could be dropped. WDYT?The text was updated successfully, but these errors were encountered: