SpringでMySQL(ver:8.0.11)を接続してDB処理を行いたいのですがTomcatを起動したときに「以前のエラーのためにコンテキストの起動が失敗しました」というエラーが下記のようにコンソールに表示されます。

警告: Exception encountered during context initialization - cancelling refresh attempt [水 7 04 00:05:17 GMT+09:00 2018]
重大: Context initialization failed [水 7 04 00:05:17 GMT+09:00 2018]
重大: クラス org.springframework.web.context.ContextLoaderListener のリスナインスタンスにコンテキスト初期化イベントを送信中の例外です [水 7 04 00:05:17 GMT+09:00 2018]
重大: One or more listeners failed to start. Full details will be found in the appropriate container log file [水 7 04 00:05:17 GMT+09:00 2018]
重大: 以前のエラーのためにコンテキストの起動が失敗しました [/SampleSpringTest] [水 7 04 00:05:17 GMT+09:00 2018]

eclipse上のDBViewerではちゃんと接続できてSQLが実行できることを確認はできています。どう対処すればよいのでしょうか。「pom.xml」には下記のような記述をしているのですがそこに原因があったりするのでしょうか。

●pom.xml

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-jdbc</artifactId>
    <version>4.2.4.RELEASE</version>
</dependency>
<dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <version>8.0.11</version>
</dependency>