mirror of https://github.com/jeecgboot/jeecg-boot
Update DynamicRouteLoader.java
parent
30151a2324
commit
5974a2e8a4
|
@ -224,7 +224,7 @@ public class DynamicRouteLoader implements ApplicationEventPublisherAware {
|
|||
|
||||
List<PredicateDefinition> predicateDefinitionList = new ArrayList<>();
|
||||
for (Object map : list) {
|
||||
JSONObject json = (JSONObject) map;
|
||||
JSONObject json = JSON.parseObject(JSON.toJSONString(map));
|
||||
PredicateDefinition predicateDefinition = new PredicateDefinition();
|
||||
//update-begin-author:zyf date:20220419 for:【VUEN-762】路由条件添加异常问题,原因是部分路由条件参数需要设置固定key
|
||||
String name=json.getString("name");
|
||||
|
|
Loading…
Reference in New Issue