From fa39ae2115b1801c820e1590ac3423094613be74 Mon Sep 17 00:00:00 2001 From: yangfuhai Date: Thu, 19 Jul 2018 15:59:02 +0800 Subject: [PATCH] 1.6.2-SNAPSHOT --- pom.xml | 20 +++++++++---------- .../java/io/jboot/db/model/JbootModel.java | 4 ++-- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/pom.xml b/pom.xml index 158bf0a23..9b6af06cf 100644 --- a/pom.xml +++ b/pom.xml @@ -100,19 +100,19 @@ io.undertow undertow-core - 2.0.9.Final + 2.0.10.Final io.undertow undertow-servlet - 2.0.9.Final + 2.0.10.Final io.undertow undertow-websockets-jsr - 2.0.9.Final + 2.0.10.Final @@ -265,7 +265,7 @@ com.aliyun.openservices ons-client - 1.7.7.Final + 1.7.8.Final provided @@ -430,7 +430,7 @@ io.opentracing.brave brave-opentracing - 0.31.0 + 0.31.2 io.zipkin.brave @@ -442,27 +442,27 @@ io.zipkin.reporter2 zipkin-sender-urlconnection - 2.6.1 + 2.7.6 org.apache.skywalking apm-toolkit-opentracing - 5.0.0-beta + 5.0.0-beta2 provided io.jsonwebtoken jjwt - 0.9.0 + 0.9.1 com.squareup.okhttp3 okhttp - 3.10.0 + 3.11.0 provided @@ -488,7 +488,7 @@ net.oschina.j2cache j2cache-core - 2.3.21-release + 2.3.22-release provided diff --git a/src/main/java/io/jboot/db/model/JbootModel.java b/src/main/java/io/jboot/db/model/JbootModel.java index be7d84215..e6a479d21 100644 --- a/src/main/java/io/jboot/db/model/JbootModel.java +++ b/src/main/java/io/jboot/db/model/JbootModel.java @@ -408,8 +408,8 @@ protected Table _getTable(boolean validateNull) { if (table == null) { table = super._getTable(); if (table == null && validateNull) { - throw new JbootException(String.format("class %s can not mapping to database table, maybe cannot connection to database or not use correct datasource, " + - "please check jboot.properties or correct config @Table(datasource=xxx) if you use multi datasource.", _getUsefulClass().getName())); + throw new JbootException(String.format("class %s can not mapping to database table, maybe application cannot connect to database , " + + "please check jboot.properties or config @Table(datasource=xxx) correct if you use multi datasource.", _getUsefulClass().getName())); } } return table;