Merge branch '5.3.x'

This commit is contained in:
Sam Brannen 2022-06-09 13:56:15 +02:00
commit 40ab20e14a
1 changed files with 3 additions and 1 deletions

View File

@ -1427,6 +1427,7 @@ The following example shows the corresponding `ExampleBean` class:
// a static factory method; the arguments to this method can be
// considered the dependencies of the bean that is returned,
// regardless of how those arguments are actually used.
@JvmStatic
fun createInstance(anotherBean: AnotherBean, yetAnotherBean: YetAnotherBean, i: Int): ExampleBean {
val eb = ExampleBean (...)
// some other operations...
@ -4687,8 +4688,9 @@ example:
----
class SimpleMovieLister {
@Required
lateinit var movieFinder: MovieFinder
@Required
set
// ...
}