In the specifications of JWE (RFC7516) they specify the values for (asymmetrically) encrypting the symmetric key. In RFC7518 in section 4.1 they list the options, of which two are relevant for my case
alg = RSA1_5 (RSAES-PKCS1-v1_5)
or
alg = RSA-OAEP (RSAES OAEP using default parameters)
Both use RSA-keys of size 2048 at least. They come with a different recommendation (Recommended- and Recommended+, respectively). What are the main differences between these two algorithms for JWE, and is there a specific use of JWE that would prefer the one above the other?