Skip to content

Commit 7f9061a

Browse files
rwinchrstoyanchev
authored andcommitted
Fix image::image
1 parent a05ff6c commit 7f9061a

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

framework-docs/modules/ROOT/pages/core/aop.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3173,7 +3173,7 @@ code snippet shows:
31733173
If you invoke a method on an object reference, the method is invoked directly on
31743174
that object reference, as the following image and listing show:
31753175

3176-
image::images/aop-proxy-plain-pojo-call.png[]
3176+
image::aop-proxy-plain-pojo-call.png[]
31773177

31783178
[source,java,indent=0,subs="verbatim",role="primary"]
31793179
.Java
@@ -3200,7 +3200,7 @@ image::images/aop-proxy-plain-pojo-call.png[]
32003200
Things change slightly when the reference that client code has is a proxy. Consider the
32013201
following diagram and code snippet:
32023202

3203-
image::images/aop-proxy-call.png[]
3203+
image::aop-proxy-call.png[]
32043204

32053205
[source,java,indent=0,subs="verbatim",role="primary"]
32063206
.Java

framework-docs/modules/ROOT/pages/core/beans.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ created and initialized, you have a fully configured and executable system or
8484
application.
8585

8686
.The Spring IoC container
87-
image::images/container-magic.png[]
87+
image::container-magic.png[]
8888

8989

9090

@@ -2727,7 +2727,7 @@ defined by that bean definition. This single instance is stored in a cache of su
27272727
singleton beans, and all subsequent requests and references for that named bean
27282728
return the cached object. The following image shows how the singleton scope works:
27292729

2730-
image::images/singleton.png[]
2730+
image::singleton.png[]
27312731

27322732
Spring's concept of a singleton bean differs from the singleton pattern as defined in
27332733
the Gang of Four (GoF) patterns book. The GoF singleton hard-codes the scope of an
@@ -2760,7 +2760,7 @@ singleton scope for stateless beans.
27602760

27612761
The following diagram illustrates the Spring prototype scope:
27622762

2763-
image::images/prototype.png[]
2763+
image::prototype.png[]
27642764

27652765
(A data access object
27662766
(DAO) is not typically configured as a prototype, because a typical DAO does not hold

framework-docs/modules/ROOT/pages/data-access.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ operations need to execute within the same Reactor context in the same reactive
607607

608608
The following image shows a conceptual view of calling a method on a transactional proxy:
609609

610-
image::images/tx.png[]
610+
image::tx.png[]
611611

612612

613613
[[transaction-declarative-first-example]]
@@ -1967,7 +1967,7 @@ logical transactions, and how the propagation setting applies to this difference
19671967
[[tx-propagation-required]]
19681968
===== Understanding `PROPAGATION_REQUIRED`
19691969

1970-
image::images/tx_prop_required.png[]
1970+
image::tx_prop_required.png[]
19711971

19721972
`PROPAGATION_REQUIRED` enforces a physical transaction, either locally for the current
19731973
scope if no transaction exists yet or participating in an existing 'outer' transaction
@@ -2004,7 +2004,7 @@ indicate clearly that a rollback was performed instead.
20042004
[[tx-propagation-requires_new]]
20052005
===== Understanding `PROPAGATION_REQUIRES_NEW`
20062006

2007-
image::images/tx_prop_requires_new.png[]
2007+
image::tx_prop_requires_new.png[]
20082008

20092009
`PROPAGATION_REQUIRES_NEW`, in contrast to `PROPAGATION_REQUIRED`, always uses an
20102010
independent physical transaction for each affected transaction scope, never
@@ -2955,7 +2955,7 @@ The following image shows the exception hierarchy that Spring provides.
29552955
(Note that the class hierarchy detailed in the image shows only a subset of the entire
29562956
`DataAccessException` hierarchy.)
29572957

2958-
image::images/DataAccessException.png[]
2958+
image::DataAccessException.png[]
29592959

29602960

29612961

@@ -8736,7 +8736,7 @@ underlying O-X mapping tool does not do so.
87368736

87378737
The O-X Mapping exception hierarchy is shown in the following figure:
87388738

8739-
image::images/oxm-exceptions.png[]
8739+
image::oxm-exceptions.png[]
87408740

87418741

87428742

framework-docs/modules/ROOT/pages/web/webflux.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ continuity and consistency with each other, they are available side by side, and
140140
from each side benefits both sides. The following diagram shows how the two relate, what they
141141
have in common, and what each supports uniquely:
142142

143-
image::images/spring-mvc-and-webflux-venn.png[]
143+
image::spring-mvc-and-webflux-venn.png[]
144144

145145
We suggest that you consider the following specific points:
146146

framework-docs/modules/ROOT/pages/web/webmvc.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ are effectively inherited and can be overridden (that is, re-declared) in the Se
154154
child `WebApplicationContext`, which typically contains beans local to the given `Servlet`.
155155
The following image shows this relationship:
156156

157-
image::images/mvc-context-hierarchy.png[]
157+
image::mvc-context-hierarchy.png[]
158158

159159
The following example configures a `WebApplicationContext` hierarchy:
160160

framework-docs/modules/ROOT/pages/web/websocket.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1114,7 +1114,7 @@ Both the Java configuration (that is, `@EnableWebSocketMessageBroker`) and the X
11141114
workflow. The following diagram shows the components used when the simple built-in message
11151115
broker is enabled:
11161116

1117-
image::images/message-flow-simple-broker.png[]
1117+
image::message-flow-simple-broker.png[]
11181118

11191119
The preceding diagram shows three message channels:
11201120

@@ -1126,7 +1126,7 @@ server-side application code.
11261126
The next diagram shows the components used when an external broker (such as RabbitMQ)
11271127
is configured for managing subscriptions and broadcasting messages:
11281128

1129-
image::images/message-flow-broker-relay.png[]
1129+
image::message-flow-broker-relay.png[]
11301130

11311131
The main difference between the two preceding diagrams is the use of the "`broker relay`" for passing
11321132
messages up to the external STOMP broker over TCP and for passing messages down from the

0 commit comments

Comments
 (0)