JSF / Java Design Question
问题 I am running JSF 2.0 I currently have one java controller that is called Contacts.java. Inside there I have a list of addresses stored as a member variable List<Addresses> addresses; When my application loads it displays a bunch of contacts and you are able to click on a contact to "open it" to view its data. When you click on the contact the contactId is passed to a method that populates the List based on the contactId. It in turn then displays the data. I also have a bunch of functionality