Hi,
The Evaluation warning message still appears even after applying the Temporary license.
Below is my code, where i am setting the license key for a Spring application in JAVA.
@SpringBootApplication
public class TestServiceApplication implements CommandLineRunner {
public static void main(String[] args) throws IOException {
com.spire.doc.license.LicenseProvider.setLicenseKey("My license key");
SpringApplication.run(TestServiceApplication.class, args);
}
And using the below dependency in my pom.xml
<dependency>
<groupId>e-iceblue</groupId>
<artifactId>spire.doc</artifactId>
<version>13.1.3</version>
</dependency>