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