79141070

Date: 2024-10-30 12:20:49
Score: 3
Natty:
Report link

I have the same problem and solved some part of it.

you might need to exclude jackson from the import

<dependency>
    <groupId>com.intuit.quickbooks-online</groupId>
    <artifactId>oauth2-platform-api</artifactId>
    <classifier>jar-with-dependencies</classifier>
    <version>${quickbook.api.version}</version>
    <exclusions>
        <exclusion>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
        </exclusion>
    </exclusions>
</dependency>

You can solve the problem from the query if you change it to specific fields i.e.

String query = "select CompanyName from companyinfo";
Reasons:
  • Blacklisted phrase (1): I have the same problem
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I have the same problem
  • Low reputation (0.5):
Posted by: art1go