how do you define what is model or entity in MVC?
most of my Spring codes had package strucure like his: http://www.mkyong.com/spring-mvc/spring-mvc-form-handling-example/
I have my view, my controller, my dao and "the model" for the dao
but I try to learn thymeleaf and found this: https://github.com/thymeleaf/thymeleafexamples-stsm
there is no "model"package, he call it entity, it is an entity but..
then I thought...oh wait a minute...what is the definition of entiy and model? similar to this question: Entity vs Model vs View Model
so what is your package structre, do you call it model or entity? do you have maybe examples of the packagenames/structure of your spring projects?