ykgarfield
ykgarfield
`Processor#run()` 有如下的一个代码片段: ``` SelectionKey key = null; try { key = iter.next(); iter.remove(); if (key.isReadable()) { read(key); } else if (key.isWritable()) { write(key); } else if (!key.isValid()) { close(key); }...
此方法如下: ``` java public void start(Properties mainProperties, Properties consumerProperties, Properties producerProperties) { final ServerConfig config = new ServerConfig(mainProperties); final ConsumerConfig consumerConfig = consumerProperties == null ? null : new ConsumerConfig(consumerProperties);...
# Error description When ApiModel value contains slash(/), the generated adoc/md has some error.For example, a controller method: ```java @RequestMapping(value= "...", method = RequestMethod.POST) @ApiOperation(value="...", notes="...") public BaseResponse createOrder(@Valid @RequestBody...
How shardingsphere can ensure transaction consistency for multiple table operations in a certain db
## Question The shardingsphere version is 5.3.2。And I use the `com.baomidou.dynamic-datasource-spring-boot-starter` to dynaimc switch database, because many tables no need to sharding。 Can using shardingsphere to operate on multiple tables...