pivotal-cloud-foundry

Geode/GemFire Cannot create gemfireCache bean error: Spring Boot v2.1.3 - GemFire starter 1.1.0.RELEASE

穿精又带淫゛_ 提交于 2020-04-30 07:19:29
问题 I'm currently using Springboot v.2.1.3 to connect to PCC w/ gemfire v9.6.1 . Based on the SBDG compatibility matrix, I tried to use SBDG v1.1.0.RELEASE and I see the below issue. org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'quoteService' defined in file [C:\Users\madhu\Downloads\pcctest\pcctest\target\classes\com\example\pcctest\QuoteService.class]: Initialization of bean failed; nested exception is org.springframework.beans

Geode/GemFire Cannot create gemfireCache bean error: Spring Boot v2.1.3 - GemFire starter 1.1.0.RELEASE

*爱你&永不变心* 提交于 2020-04-30 07:18:11
问题 I'm currently using Springboot v.2.1.3 to connect to PCC w/ gemfire v9.6.1 . Based on the SBDG compatibility matrix, I tried to use SBDG v1.1.0.RELEASE and I see the below issue. org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'quoteService' defined in file [C:\Users\madhu\Downloads\pcctest\pcctest\target\classes\com\example\pcctest\QuoteService.class]: Initialization of bean failed; nested exception is org.springframework.beans

SpringBoot in Pivotal Cloud Issue

北慕城南 提交于 2020-04-13 06:05:31
问题 I am trying to deploy the SpringBoot Restful application in Pivotal Cloud factory. My JDK 1.8 and using Maven. Tried the below Sample application from pivotal: https://spring.io/guides/gs/rest-service/ Maven build is successful with the jar file generated at target folder. I have added manifest.yml at the pom.xml file location as below. --- applications: - name: rest-mini buildpack: https://github.com/gratiartis/java-buildpack memory: 128M instances: 1 host: rest-mini domain: cfapps.io path:

Route name across api end points

空扰寡人 提交于 2020-01-25 10:16:08
问题 We have below two end points, having their respective Organization and Space 1) Dev environment: a.b.c.org.cloud 2) Proof of Concept environment(POC): a.b.c.poc.io There is an app( my-cool-app ) with route name my-cool-app.a.b.c.poc.io running in POC environment. Due to code smell issue in this app, route name is decided by app source code(hard coded) but not through manifest.yml of cf push . This lead to same route name my-cool-app.a.b.c.poc.io for my-cool-app in Dev environment. 1) Can app

Pivotal/Django settings for user provided MSSQL database

China☆狼群 提交于 2020-01-16 09:41:48
问题 I deployed a django application on Pivotal Cloud Foundry. While in development, I just stuck with the built in sqlite database while getting the UI together (didn't need to retain data so pushing/deleting wasn't an issue). I've since developed an SQL Server back end in an on-prem server (Azure..but on prem). My organization doesn't allow public IP services, so anything other than spring applications in Pivotal isn't allowed. On my Windows laptop, I have no issue speaking to the database

Pivotal/Django settings for user provided MSSQL database

前提是你 提交于 2020-01-16 09:41:27
问题 I deployed a django application on Pivotal Cloud Foundry. While in development, I just stuck with the built in sqlite database while getting the UI together (didn't need to retain data so pushing/deleting wasn't an issue). I've since developed an SQL Server back end in an on-prem server (Azure..but on prem). My organization doesn't allow public IP services, so anything other than spring applications in Pivotal isn't allowed. On my Windows laptop, I have no issue speaking to the database

Pivotal Cloud Foundry - Managed vs User Defined Service

萝らか妹 提交于 2020-01-07 03:52:15
问题 I've been using cloud foundry for the past 2-3 months and have come across user defined and managed services. My understanding was that in case of managed services come along with the required implementing if service broker and in case of user defined services , the one who is defining the service has to take care of the implementation. I wanted to understand what is the advantage of using managed / user defined service over defining the connection details within the application ( or

FeignException: status 302 reading MyService#dummy(); content:

六眼飞鱼酱① 提交于 2020-01-06 09:37:21
问题 I have deployed my 2 Spring Boot applications in PCF and an Eureka Server for discovery. I have @EnableEurekaClient in the Applications and they can be seen in the Eureka Server in PCF When I hit the the other application using FeignClient I am getting a error 2017-11-23T16:54:19.745+05:30 [APP/PROC/WEB/0] [ERR] feign.FeignException: status 302 reading MyService#dummy(); content: 2017-11-23T16:54:19.745+05:30 [APP/PROC/WEB/0] [ERR] at feign.FeignException.errorStatus(FeignException.java:62)

Get app guid from app name - via code

江枫思渺然 提交于 2020-01-03 05:09:10
问题 I've and node application mainApp that running on CF space, in this node application im getting other application name ( that deployed in the same space) and I want to get from it the application guid , How I can do it ? This is what I've tried ( I try to get all apps in this space and search for specific app from the guid but I got http 401 - unauthorized , any idea how can I get from app that deployed to CF the app app guid (suppose I've the app name ) There is a better way to achieve this

Change of route name - Cloud foundry

放肆的年华 提交于 2019-12-31 05:33:08
问题 Each component(java) of a particular application is deployed on Cloud foundry as an application instance. Each application instance(component) has its respective route name. Every component talks another component through REST. Every component( say component2 ) has route name something like component2-dev.abc.xyz.com . On blue green deployment of any component(say component2 ) in PCFoundry the route name of a component2 gets changed for some duration. Amidst this duration the component1