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
- Host: GitHub
- URL: https://github.com/marschall/spring-metadata-test
- Owner: marschall
- Created: 2018-12-16T11:53:26.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-04-06T14:02:24.000Z (about 2 years ago)
- Last Synced: 2025-01-16T02:45:00.970Z (4 months ago)
- Language: Java
- Size: 4.51 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 {}
```