Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -861,8 +861,8 @@ You can add an `org.apache.catalina.connector.Connector` to the `TomcatServletWe
return connector;
}
catch (IOException ex) {
throw new IllegalStateException("can't access keystore: [" + "keystore"
+ "] or truststore: [" + "keystore" + "]", ex);
throw new IllegalStateException("can't access keystore: [" + keystore
+ "] or truststore: [" + truststore + "]", ex);
}
}
----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4277,7 +4277,6 @@ The following code listing shows how to inject a Cassandra bean:

private final CassandraTemplate template;

@Autowired
public MyBean(CassandraTemplate template) {
this.template = template;
}
Expand Down