Browse Source

Merge branch '6.1.x'

pull/33493/head
Sam Brannen 1 year ago
parent
commit
907859f2f3
  1. 4
      framework-docs/modules/ROOT/pages/web/webmvc/mvc-controller/ann-methods/requestparam.adoc
  2. 2
      spring-context/src/test/java/org/springframework/aop/aspectj/autoproxy/AspectJAutoProxyCreatorTests.java

4
framework-docs/modules/ROOT/pages/web/webmvc/mvc-controller/ann-methods/requestparam.adoc

@ -61,7 +61,7 @@ Kotlin:: @@ -61,7 +61,7 @@ Kotlin::
By default, method parameters that use this annotation are required, but you can specify that
a method parameter is optional by setting the `@RequestParam` annotation's `required` flag to
`false` or by declaring the argument with an `java.util.Optional` wrapper.
`false` or by declaring the argument with a `java.util.Optional` wrapper.
Type conversion is automatically applied if the target method parameter type is not
`String`. See xref:web/webmvc/mvc-controller/ann-methods/typeconversion.adoc[Type Conversion].
@ -86,7 +86,7 @@ Java:: @@ -86,7 +86,7 @@ Java::
// ...
@PostMapping(value = "/process", consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE)
@PostMapping(path = "/process", consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE)
public String processForm(@RequestParam MultiValueMap<String, String> params) {
// ...
}

2
spring-context/src/test/java/org/springframework/aop/aspectj/autoproxy/AspectJAutoProxyCreatorTests.java

@ -609,7 +609,7 @@ abstract class AbstractProxyTargetClassConfig { @@ -609,7 +609,7 @@ abstract class AbstractProxyTargetClassConfig {
@Aspect
static class SupplierAdvice {
@Around("execution(public * org.springframework.aop.aspectj.autoproxy..*.*(..))")
@Around("execution(* java.util.function.Supplier+.get())")
Object aroundSupplier(ProceedingJoinPoint joinPoint) throws Throwable {
return "advised: " + joinPoint.proceed();
}

Loading…
Cancel
Save