Skip to content

Commit 4574f33

Browse files
committed
Update getting started and index documentation
1 parent d34abd5 commit 4574f33

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

src/guide/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,13 +106,13 @@ Property binding and bean injection annotations are marked using struct field ta
106106

107107
Bind properties to a value, the bind value can be primitive type, map, slice, struct. When binding to struct, the tag 'value' indicates which properties should be bind. The 'value' tags are defined by value:"${a:=b}", 'a' is the property name, 'b' is the default value.
108108

109-
![binding](binding.svg)
109+
![binding](/image/binding.svg)
110110

111111
##### Dependency Injection
112112

113113
Dependency Injection is a design pattern used to implement decoupling between classes and the management of dependencies. It transfers the responsibility of creating and maintaining dependencies to an external container, so that the class does not need to instantiate dependent objects itself. Instead, the external container dynamically injects the dependencies.
114114

115-
![autowire](autowire.svg)
115+
![autowire](/image/autowire.svg)
116116

117117
### Conditional registering
118118

@@ -473,7 +473,7 @@ func main() {
473473

474474
Initialization and deinitialization based on dependency order, everything will be executed as expected.
475475

476-
![order](event.svg)
476+
![order](/image/event.svg)
477477

478478
### Project layout
479479

0 commit comments

Comments
 (0)