An open API service indexing awesome lists of open source software.

https://github.com/marschall/spring-metadata-test

Try to quantify the overhead of different ways of registering Spring beans, especially component scanning
https://github.com/marschall/spring-metadata-test

Last synced: 3 months ago
JSON representation

Try to quantify the overhead of different ways of registering Spring beans, especially component scanning

Awesome Lists containing this project

README

        

Spring Metadata Test
====================

Try to quantify the overhead of different ways of registering Spring beans, especially component scanning.

```
[component-scan|configuration|bean-definition|supplier] [wait|exit]
```

```
-XX:+UseSerialGC -Xmx64m
```

Ideas
-----

`@ImportSelector`

```java
@Configuration
@Import(MyImportSelector.class)
public class MyConfig {

}
```