Search before asking
What happened
json string to Result<PageInfo> using org.apache.dolphinscheduler.common.utils.JSONUtils.parseObject(jsonStr,clazz);
com.fasterxml.jackson.databind.exc.InvalidDefinitionException: Cannot construct instance of org.apache.dolphinscheduler.api.utils.PageInfo (no Creators, like default constructor, exist): cannot deserialize from Object value (no delegate- or property-based Creator)
What you expected to happen
add this to PageInfo.java
public PageInfo() {
}
will solve this problem
How to reproduce
json string to Result<PageInfo> using org.apache.dolphinscheduler.common.utils.JSONUtils.parseObject(jsonStr,clazz);
com.fasterxml.jackson.databind.exc.InvalidDefinitionException: Cannot construct instance of org.apache.dolphinscheduler.api.utils.PageInfo (no Creators, like default constructor, exist): cannot deserialize from Object value (no delegate- or property-based Creator)
Anything else
No response
Are you willing to submit PR?
Code of Conduct