Chris M
Chris M
@spencergibb that's a real pity because as I wrote the API suggests that you can use "real" URIs as target where you can in fact just use server addresses without...
oh no I fixed the same issue in https://github.com/spring-cloud/spring-cloud-gateway/pull/3260 - there I did provide a small reproducer project and a differently worded explanation which illustrates the issue (hopefully) clearly
oh thank god I am not alone, I am hitting exactly the same issue: after incorporating `spring-cloud-starter-gateway-mvc` into an existing mvc app all form post mappings (e.g. `@PostMapping(value = "/mapping",...
if anyone else hits this before it is fixed in here, this is my workaround (it disables the filter): @Bean public FormFilter formFilter() { // see https://github.com/spring-cloud/spring-cloud-gateway/issues/3244 - this is...
I could do an MR but I am unsure how to proceed.... IMHO the `parseOutputTimestamp` method should use the configured `dateFormat` for parsing but maybe there were reasons to use...
I finally got some time to look into this again. Unfortunately your suggestion does not work as (also new to me) the new java date parsers are not able to...
Thank you very much for your response! Unfortunately it does not, as (maybe this was not clear enough in my ramblings above) the plugin itself generates an invalid dateformat for...
no worries :) As I said in my original message, doing `${git.commit.time}` is explicitly mentioned on [Mavens reproducible build page (last item in FAQ)](https://maven.apache.org/guides/mini/guide-reproducible-builds.html#faq) as this enables truly automatic reproducible...
It does not work on my machine :( I see that your changes should be good in theory but there's something wrong with it, I did the following, where is...
thanks for your feedback, let' recapitulate (I am in Germany so I use my timezone as an example): * `2024-02-15T13:54:59+0100` is RFC822-format which is produced by the SimpleDateFormat (SDF) format...