You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by GitBox <gi...@apache.org> on 2019/08/28 07:17:11 UTC

[GitHub] [incubator-shardingsphere] TravelEngineers commented on issue #2938: SpringBoot 1.5.x how to use ?

TravelEngineers commented on issue #2938: SpringBoot 1.5.x how to use ?
URL: https://github.com/apache/incubator-shardingsphere/issues/2938#issuecomment-525616244
 
 
   ##SpringBoot 2.1.7 user config 
   ```
   spring.shardingsphere.datasource.name=ds
   
   spring.shardingsphere.datasource.ds.type=org.apache.commons.dbcp2.BasicDataSource
   spring.shardingsphere.datasource.ds.driver-class-name=com.mysql.jdbc.Driver
   spring.shardingsphere.datasource.ds.url=jdbc:mysql://127.0.0.1:3306/encrypt?serverTimezone=UTC&useSSL=false
   spring.shardingsphere.datasource.ds.username=root
   spring.shardingsphere.datasource.ds.password=
   spring.shardingsphere.datasource.ds.max-total=100
   
   spring.shardingsphere.encrypt.encryptors.encryptor_aes.type=aes
   spring.shardingsphere.encrypt.encryptors.encryptor_aes.props.aes.key.value=123456
   spring.shardingsphere.encrypt.tables.t_order.columns.user_id.plainColumn=user_decrypt
   spring.shardingsphere.encrypt.tables.t_order.columns.user_id.cipherColumn=user_encrypt
   spring.shardingsphere.encrypt.tables.t_order.columns.user_id.assistedQueryColumn=user_assisted
   spring.shardingsphere.encrypt.tables.t_order.columns.user_id.encryptor=encryptor_aes
   
   spring.shardingsphere.props.sql.show=true
   spring.shardingsphere.props.query.with.cipher.comlum=true
   ```
   Error msg:
   ```
   Description:
   Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.
   Reason: Failed to determine a suitable driver class
   Action:
   Consider the following:
   	If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.
   	If you have database settings to be loaded from a particular profile you may need to activate it (no profiles are currently active).
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services