Reading Time: < 1 minute Tried two two tutorials on my personal GCP. hello world cloud storage (upload a file, then return a public url for download; another download link) I may delete those bucket and files later on, as hosting costs money (app engine, cloud storage). Update: I disabled the app (here is one article talking about disable /… Continue reading GCP Cloud Storage and PCF
Tag: gcp
GCP Cloud SQL hibernate issue
Reading Time: < 1 minute It complains the table does not exist when in the data.sql we were trying to insert some data. Turns out the table did exist but the default table name was lower case, while we were using Upper case both in the data.sql and the java hibernate entity. The fix is to add one line in… Continue reading GCP Cloud SQL hibernate issue