File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
spring-boot-project/spring-boot-docs/src/docs/asciidoc Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -861,8 +861,8 @@ You can add an `org.apache.catalina.connector.Connector` to the `TomcatServletWe
861
861
return connector;
862
862
}
863
863
catch (IOException ex) {
864
- throw new IllegalStateException("can't access keystore: [" + " keystore"
865
- + "] or truststore: [" + "keystore" + "]", ex);
864
+ throw new IllegalStateException("can't access keystore: [" + keystore
865
+ + "] or truststore: [" + truststore + "]", ex);
866
866
}
867
867
}
868
868
----
Original file line number Diff line number Diff line change @@ -4277,7 +4277,6 @@ The following code listing shows how to inject a Cassandra bean:
4277
4277
4278
4278
private final CassandraTemplate template;
4279
4279
4280
- @Autowired
4281
4280
public MyBean(CassandraTemplate template) {
4282
4281
this.template = template;
4283
4282
}
You can’t perform that action at this time.
0 commit comments