Is there any available online ecommerce architecture in java

I am new to java design templates and I am creating e-commerce using spring mvc. but I am confused how to write different classes according to patterns.

I don’t know where to put authentication, confirmEmailAddress, addProdctCart, shoppingHistory as functions,

that is, an example of any site where I can find how to separate functions in classes

+3
source share
2 answers

Java web frameworks tend to be more bare than other web frameworks.

Rails gives you convention over configuration, and it's pretty easy to get started with a data-driven / dynamic website.

PHP . Drupal, Wordpress, CodeIgniter, .

, . , , Java , , .

(-Java) , authenticate, confirmEmailAddress, addProdctCart, shoppingHistory, . Java.

+2

Spring , : Spring MVC, , .. PetClinic SVN.

+1

Source: https://habr.com/ru/post/1793929/


All Articles