package ecommerce; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class EcommerceApplication { public static void main(String[] args) { SpringApplication.run(EcommerceApplication.class, args); } }
Asish Shaji
updated on 09 Jan 2023
Project Details
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Read more Projects by Asish Shaji (2)
Project 2
import java.util.Scanner; class BankDetails { private String accno; private String name; private String acc_type; private long balance; Scanner sc = new Scanner(System.in); //method to open new account public void openAccount() { System.out.print("Enter Account No: "); accno = sc.next(); System.out.print("Enter Account…
31 Jan 2023 05:13 PM IST
Project 1
package ecommerce; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class EcommerceApplication { public static void main(String[] args) { SpringApplication.run(EcommerceApplication.class, args); } }
09 Jan 2023 02:58 PM IST