我正在將日曆功能寫入彈簧mvc應用程序。我有一個calendar.jsp
,它提供了appointments
的視圖,這又與providers
和customers
相關聯。鏈接其他實體的實體的彈簧註釋
我的底層MySQL數據庫有appointments
,providers
和customers
的表格。但是calendar
是用戶界面的抽象。該Calendar
類沒有在數據庫中的相關表,但Calendar
類也都appointments
的List
和所有providers
的list
,等我用@Entity
標註爲appointments
,providers
和customers
。
什麼彈簧註釋應該用於Calendar
類?
我需要能夠從calendar.jsp
參考calendar.providers
和calendar.appointments
等。
這是a link to an example of a similar class that uses Roo annotation。
我寧願避免使用Roo。能夠使用基本彈簧框架分佈將會很好。我的應用程序使用Spring和Hibernate。我想避免增加不必要的複雜性。
向我們展示你迄今爲止的所作所爲將幫助很多 – shazin
向我們展示一些代碼! – Mannekenpix