Commit 52659b1d authored by Stephane Nicoll's avatar Stephane Nicoll

Merge branch '2.2.x'

Closes gh-20013
parents ae169a36 03d126cb
......@@ -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);
}
}
----
......
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment