io.github.andriamarosoa.setter.SetterApplication Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of setter Show documentation
Show all versions of setter Show documentation
Demo project for Spring Boot
package io.github.andriamarosoa.setter;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class SetterApplication {
public static void main(String[] args) throws Exception{
SpringApplication.run(SetterApplication.class, args);
String json="[{\"nom\":\"tina\"}]";
Person[] rep=new Person().fromJson(json);
System.out.println(rep[0].print());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy