Bragolgirith

Results 11 comments of Bragolgirith

The last commit in the JWE branch seems to have been about a year ago - is it still alive?

An entry in the `README` explaining exactly what `makeAggregateBom` and `outputReactorProjects` do and a sample best-practices configuration for a multi-module project would be great!

To this purpose, can we please just deprecate `@InjectMocks` so people can stop using it :)

This is most likely due to the structure packing alignment issue described [here](https://github.com/opendnssec/SoftHSMv2/issues/471). In short, although the [PKCS11 v2.40 spec](http://docs.oasis-open.org/pkcs11/pkcs11-base/v2.40/os/pkcs11-base-v2.40-os.html#_Toc72656011) explicitly says: > Cryptoki structures are packed to occupy as...

The C# [Pkcs11Interop](https://github.com/Pkcs11Interop/Pkcs11Interop/blob/master/doc/ARCHITECTURE.md) library solves both this (structure packing alignment) and another common Cryptoki interop issue (the C `ulong` type size) on the library level by doing runtime feature recognition:...

I think the problem is in the `DefaultCodegen#updateDataTypeWithEnumForMap` method, on line [4278](https://github.com/OpenAPITools/openapi-generator/blob/c2472b03b63fa61a3d7e5b086f36c1bd48d0ee4c/modules/openapi-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java#L4278): ```java property.datatypeWithEnum = property.datatypeWithEnum.replace(", " + baseItem.baseType, ", " + toEnumName(baseItem)); ``` This will correctly replace a non-parameterized...

I was also curious about this, and a `spring` server generator with a `spring-http-interface` sub-template seems to exist already: https://openapi-generator.tech/docs/generators/spring (haven't tested it though) But a client generator would be...

> [@Bragolgirith](https://github.com/Bragolgirith) That generates a client not a server The generator from the link explicitly specifies: > generator type SERVER > Generates a Java SpringBoot Server application using the SpringDoc...

Not sure if your specific threading issues are caused by this, but we found the `LockByKey` class from this [article](https://www.baeldung.com/java-acquire-lock-by-key) to not be thread-safe (and notified the author). This can...

Still happening on 1.0.8 when behind a corporate HTTP proxy.