model view controller - Java Package for MVC -
i'm developing application mvc pattern , have around 20 classes overall including views, models , controllers. create packages models, views , controllers because makes easier me find them when they're in different packages. i'm worried if wrong way of using packages in terms of java conventions. ideas?
that infact correct , cleaner approach ideally should used in production code. models should in package, controllers should in different package , view (typically jsp files) go in web/pages
folder.
Comments
Post a Comment