Source
Setting Up IntelliJ IDEA CE for Snowpark Java
Choose File » New » Project. From the Project SDK menu, select 11 (for Java version 11). Note that you don’t need to select an archetype. You can just leave the Create from archetype box unchecked.
Analyzing queries and troubleshooting with Snowpark Java
Snowpark uses the Apache Arrow connector, which depends on internal Java APIs that are not exposed by default after Java 9. To work around this error, set the following parameter either as a command - line argument when running your…
Creating a Session for Snowpark Java
To use Snowpark in your application, you need to create a session. For convenience in writing code, you can also import the names of packages and objects. Importing Names from Packages for Snowpark The Snowpark API provides a number of…