【例子介绍】JavaEE登陆程序(JSF ICEFaces)好东东
JSF ICEFaces 做的一个小登陆,大家凑合着看看,小弟初学乍练,有什么不好的大家包涵包涵。
【相关图片】
【源码结构】
文件清单
└── BetaItems
├── data
│ ├── database.txt
│ └── data.txt
├── doc
│ └── 设计描述.doc.doc
├── src
│ ├── bean
│ │ ├── newUserInfo.java
│ │ ├── RoleInfo.java
│ │ ├── UserInfo.java
│ │ └── WelcomBean.java
│ ├── biz
│ │ └── UserInfoBiz.java
│ ├── dao
│ │ ├── impl
│ │ │ └── UserInfoImpl.java
│ │ └── jdbc
│ │ ├── Config.java
│ │ ├── DataException.java
│ │ ├── DBHelp.java
│ │ ├── db.properties
│ │ └── SqlDAO.java
│ └── tools
│ ├── OperationSession.java
│ └── Page.java
└── WebRoot
├── admin.jsp
├── admin.xhtml
├── css
│ └── style.css
├── js
│ ├── icefaces-d2d.js
│ └── jquery.js
├── login.xhtml
├── META-INF
│ └── MANIFEST.MF
├── WEB-INF
│ ├── classes
│ │ ├── bean
│ │ │ ├── newUserInfo.class
│ │ │ ├── RoleInfo.class
│ │ │ ├── UserInfo.class
│ │ │ └── WelcomBean.class
│ │ ├── biz
│ │ │ └── UserInfoBiz.class
│ │ ├── dao
│ │ │ ├── impl
│ │ │ │ └── UserInfoImpl.class
│ │ │ └── jdbc
│ │ │ ├── Config.class
│ │ │ ├── DataException.class
│ │ │ ├── DBHelp.class
│ │ │ ├── db.properties
│ │ │ └── SqlDAO.class
│ │ └── tools
│ │ ├── OperationSession.class
│ │ └── Page.class
│ ├── faces-config.xml
│ ├── html_basic.tld
│ ├── jsf_core.tld
│ ├── lib
│ │ └── mysql-connector-java-5.0.6-bin.jar
│ └── web.xml
└── xmlhttp
└── css
├── rime
│ ├── css-images
│ │ ├── arrow-ff-dis.gif
│ │ ├── arrow-ff.gif
│ │ ├── arrow-first-dis.gif
│ │ ├── arrow-first.gif
│ │ ├── arrow-fr-dis.gif
│ │ ├── arrow-fr.gif
│ │ ├── arrow-last-dis.gif
│ │ ├── arrow-last.gif
│ │ ├── arrow-next-dis.gif
│ │ ├── arrow-next.gif
│ │ ├── arrow-previous-dis.gif
│ │ ├── arrow-previous.gif
│ │ ├── bottom_menu_bg.png
│ │ ├── bottom_menu_btn_bg_on.png
│ │ ├── bullet.gif
│ │ ├── cal_arrow_left_dis.gif
│ │ ├── cal_arrow_left.gif
│ │ ├── cal_arrow_right_dis.gif
│ │ ├── cal_arrow_right.gif
│ │ ├── cal_button.gif
│ │ ├── cal_off.gif
│ │ ├── column_sort_asc.gif
│ │ ├── column_sort_desc.gif
│ │ ├── connect_active.gif
│ │ ├── connect_caution.gif
│ │ ├── connect_disconnected.gif
│ │ ├── connect_idle.gif
│ │ ├── contentContainer_bg.gif
│ │ ├── contentContainer_bg_up.gif
│ │ ├── off-left-bot.gif
│ │ ├── off-left-top-dis.gif
│ │ ├── off-mid-bot.gif
│ │ ├── off-mid-top-dis.gif
│ │ ├── off-right-bot.gif
│ │ ├── off-right-top-dis.gif
│ │ ├── PnlClpsblCnt_bullet.gif
│ │ ├── PnlHdr_bgslice.gif
│ │ ├── PnlHdr_collapsed.gif
│ │ ├── PnlHdr_down.gif
│ │ ├── PnlHdr_file.gif
│ │ ├── ProgFill_bg.gif
│ │ ├── ProgFill_Indet_Bg_active.gif
│ │ ├── ProgFill_Indet_Bg_inactive.gif
│ │ ├── submenu.gif
│ │ ├── submenu_on.gif
│ │ ├── Tab_Btm_LftBtm.gif
│ │ ├── Tab_Btm_LftBtm_off.gif
│ │ ├── Tab_Btm_LftMid.gif
│ │ ├── Tab_Btm_LftMid_off.gif
│ │ ├── Tab_Btm_MidBtm.gif
│ │ ├── Tab_Btm_MidBtm_off.gif
│ │ ├── Tab_Btm_MidMid.gif
│ │ ├── Tab_Btm_MidMid_off.gif
│ │ ├── Tab_Btm_RtBtm.gif
│ │ ├── Tab_Btm_RtBtm_off.gif
│ │ ├── Tab_Btm_RtMid.gif
│ │ ├── Tab_Btm_RtMid_off.gif
│ │ ├── table-border.gif
│ │ ├── table_col_header.gif
│ │ ├── Tab_LftMid.gif
│ │ ├── Tab_LftMid_off.gif
│ │ ├── Tab_LftTop.gif
│ │ ├── Tab_LftTop_off.gif
│ │ ├── Tab_MidMid_bullet.gif
│ │ ├── Tab_MidMid_bullet_off.gif
│ │ ├── Tab_MidMid_bullet_over.gif
│ │ ├── Tab_MidMid.gif
│ │ ├── Tab_MidMid_off.gif
│ │ ├── Tab_MidTop.gif
│ │ ├── Tab_MidTop_off.gif
│ │ ├── Tab_RtMid.gif
│ │ ├── Tab_RtMid_off.gif
│ │ ├── Tab_RtTop.gif
│ │ ├── Tab_RtTop_off.gif
│ │ ├── theme_bg.gif
│ │ ├── theme_change_bg.gif
│ │ ├── tree_document.gif
│ │ ├── tree_folder_closed.gif
│ │ ├── tree_folder_close.gif
│ │ ├── tree_folder_doc.gif
│ │ ├── tree_folder_open.gif
│ │ ├── tree_line_blank.gif
│ │ ├── tree_line_last_node.gif
│ │ ├── tree_line_middle_node.gif
│ │ ├── tree_line_vertical.gif
│ │ ├── tree_nav_bottom_close.gif
│ │ ├── tree_nav_bottom_open.gif
│ │ ├── tree_nav_middle_close.gif
│ │ ├── tree_nav_middle_open.gif
│ │ ├── tree_nav_top_close.gif
│ │ ├── tree_nav_top_close_no_siblings.gif
│ │ ├── tree_nav_top_open.gif
│ │ └── tree_nav_top_open_no_siblings.gif
│ ├── rime.css
│ └── rime-portlet.css
├── royale
│ ├── css-images
│ │ ├── add.gif
│ │ ├── arrowAsc.jpg
│ │ ├── arrowDesc.jpg
│ │ ├── arrow-ff-dis.gif
│ │ ├── arrow-ff.gif
│ │ ├── arrow-first-dis.gif
│ │ ├── arrow-first.gif
│ │ ├── arrow-fr.gif
│ │ ├── arrow-last-dis.gif
│ │ ├── arrow-last.gif
│ │ ├── arrow-next-dis.gif
│ │ ├── arrow-next.gif
│ │ ├── arrow-previous-dis.gif
│ │ ├── arrow-previous.gif
│ │ ├── arrow-rw-dis.gif
│ │ ├── cal_arrow_left.gif
│ │ ├── cal_arrow_right.gif
│ │ ├── cal_button.gif
│ │ ├── cal_off.gif
│ │ ├── column_sort_asc.gif
│ │ ├── column_sort_desc.gif
│ │ ├── connect_active.gif
│ │ ├── connect_caution.gif
│ │ ├── connect_disconnected.gif
│ │ ├── connect_idle.gif
│ │ ├── folder.gif
│ │ ├── images.jpeg
│ │ ├── in_progress.gif
│ │ ├── in_progress_inactive.gif
│ │ ├── line_first.gif
│ │ ├── line.gif
│ │ ├── line_last.gif
│ │ ├── line_middle.gif
│ │ ├── menu_blank_icon.gif
│ │ ├── menu_checkbox.gif
│ │ ├── menu_checkbox_selected.gif
│ │ ├── menu_radio.gif
│ │ ├── menu_radio_selected.gif
│ │ ├── node_close_first.gif
│ │ ├── node_close.gif
│ │ ├── node_close_last.gif
│ │ ├── node_close_middle.gif
│ │ ├── node_open_first.gif
│ │ ├── node_open.gif
│ │ ├── node_open_last.gif
│ │ ├── node_open_middle.gif
│ │ ├── noline.gif
│ │ ├── off-left-bot.gif
│ │ ├── off-left-mid.gif
│ │ ├── off-left-top-dis.gif
│ │ ├── off-left-top.gif
│ │ ├── off-mid-bot.gif
│ │ ├── off-mid-mid.gif
│ │ ├── off-mid-top-dis.gif
│ │ ├── off-mid-top.gif
│ │ ├── off-right-bot.gif
│ │ ├── off-right-mid.gif
│ │ ├── off-right-top-dis.gif
│ │ ├── off-right-top.gif
│ │ ├── on-left-bot.gif
│ │ ├── on-left-mid.gif
│ │ ├── on-left-top.gif
│ │ ├── on-mid-bot.gif
│ │ ├── on-mid-mid.gif
│ │ ├── on-mid-top.gif
│ │ ├── on-right-bot.gif
│ │ ├── on-right-mid.gif
│ │ ├── on-right-top.gif
│ │ ├── over-left-bot.gif
│ │ ├── over-left-mid.gif
│ │ ├── over-left-top.gif
│ │ ├── over-mid-bot.gif
│ │ ├── over-mid-mid.gif
│ │ ├── over-mid-top.gif
│ │ ├── over-right-bot.gif
│ │ ├── over-right-mid.gif
│ │ ├── over-right-top.gif
│ │ ├── popupclose.gif
│ │ ├── popupicon.gif
│ │ ├── remove.gif
│ │ ├── resize.gif
│ │ ├── selection_spacer.gif
│ │ ├── spacer.gif
│ │ ├── submenu.gif
│ │ ├── submenu_on.gif
│ │ ├── table_col_header.gif
│ │ ├── tab-off.gif
│ │ ├── tab-on.gif
│ │ ├── tab-over.gif
│ │ ├── tbot-off-left-bot.gif
│ │ ├── tbot-off-left-top.gif
│ │ ├── tbot-off-mid-bot.gif
│ │ ├── tbot-off-mid-top.gif
│ │ ├── tbot-off-right-bot.gif
│ │ ├── tbot-off-right-top.gif
│ │ ├── tbot-on-left-bot.gif
│ │ ├── tbot-on-left-top.gif
│ │ ├── tbot-on-mid-bot.gif
│ │ ├── tbot-on-mid-top.gif
│ │ ├── tbot-on-right-bot.gif
│ │ ├── tbot-on-right-top.gif
│ │ ├── tbot-over-left-bot.gif
│ │ ├── tbot-over-left-top.gif
│ │ ├── tbot-over-mid-bot.gif
│ │ ├── tbot-over-mid-top.gif
│ │ ├── tbot-over-right-bot.gif
│ │ ├── tbot-over-right-top.gif
│ │ ├── tree_document.gif
│ │ ├── tree_folder_closed.gif
│ │ ├── tree_folder_close.gif
│ │ ├── tree_folder_open.gif
│ │ ├── tree_line_blank.gif
│ │ ├── tree_line_last_node.gif
│ │ ├── tree_line_middle_node.gif
│ │ ├── tree_line_vertical.gif
│ │ ├── tree_nav_bottom_close.gif
│ │ ├── tree_nav_bottom_open.gif
│ │ ├── tree_nav_middle_close.gif
│ │ ├── tree_nav_middle_open.gif
│ │ ├── tree_nav_top_close.gif
│ │ ├── tree_nav_top_close_no_siblings.gif
│ │ ├── tree_nav_top_closess.gif
│ │ ├── tree_nav_top_open.gif
│ │ ├── tree_nav_top_open_no_siblings.gif
│ │ └── window_top.gif
│ └── royale.css
└── xp
├── css-images
│ ├── add.gif
│ ├── arrowAsc.jpg
│ ├── arrowDesc.jpg
│ ├── arrow-ff-dis.gif
│ ├── arrow-ff.gif
│ ├── arrow-first-dis.gif
│ ├── arrow-first.gif
│ ├── arrow-fr-dis.gif
│ ├── arrow-fr.gif
│ ├── arrow-last-dis.gif
│ ├── arrow-last.gif
│ ├── arrow-next-dis.gif
│ ├── arrow-next.gif
│ ├── arrow-previous-dis.gif
│ ├── arrow-previous.gif
│ ├── cal_arrow_left_dis.gif
│ ├── cal_arrow_left.gif
│ ├── cal_arrow_right_dis.gif
│ ├── cal_arrow_right.gif
│ ├── cal_button.gif
│ ├── cal_off.gif
│ ├── column_sort_asc.gif
│ ├── column_sort_desc.gif
│ ├── connect_active.gif
│ ├── connect_caution.gif
│ ├── connect_disconnected.gif
│ ├── connect_idle.gif
│ ├── folder.gif
│ ├── images.jpeg
│ ├── in_progress.gif
│ ├── in_progress_inactive.gif
│ ├── line_first.gif
│ ├── line.gif
│ ├── line_last.gif
│ ├── line_middle.gif
│ ├── menu_blank_icon.gif
│ ├── menu_checkbox.gif
│ ├── menu_checkbox_selected.gif
│ ├── menu_radio.gif
│ ├── menu_radio_selected.gif
│ ├── node_close_first.gif
│ ├── node_close.gif
│ ├── node_close_last.gif
│ ├── node_close_middle.gif
│ ├── node_open_first.gif
│ ├── node_open.gif
│ ├── node_open_last.gif
│ ├── node_open_middle.gif
│ ├── noline.gif
│ ├── off-left-bot.gif
│ ├── off-left-mid.gif
│ ├── off-left-top-dis.gif
│ ├── off-left-top.gif
│ ├── off-mid-bot.gif
│ ├── off-mid-mid.gif
│ ├── off-mid-top-dis.gif
│ ├── off-mid-top.gif
│ ├── off-right-bot.gif
│ ├── off-right-mid.gif
│ ├── off-right-top-dis.gif
│ ├── off-right-top.gif
│ ├── on-left-bot.gif
│ ├── on-left-mid.gif
│ ├── on-left-top.gif
│ ├── on-mid-bot.gif
│ ├── on-mid-mid.gif
│ ├── on-mid-top.gif
│ ├── on-right-bot.gif
│ ├── on-right-mid.gif
│ ├── on-right-top.gif
│ ├── over-left-bot.gif
│ ├── over-left-mid.gif
│ ├── over-left-top.gif
│ ├── over-mid-bot.gif
│ ├── over-mid-mid.gif
│ ├── over-mid-top.gif
│ ├── over-right-bot.gif
│ ├── over-right-mid.gif
│ ├── over-right-top.gif
│ ├── popupclose.gif
│ ├── popupicon.gif
│ ├── remove.gif
│ ├── resize.gif
│ ├── selection_spacer.gif
│ ├── spacer.gif
│ ├── submenu.gif
│ ├── submenu_on.gif
│ ├── table-border.gif
│ ├── table_col_header.gif
│ ├── tab-off.gif
│ ├── tab-on.gif
│ ├── tab-over.gif
│ ├── tbot-off-left-bot.gif
│ ├── tbot-off-left-top.gif
│ ├── tbot-off-mid-bot.gif
│ ├── tbot-off-mid-top.gif
│ ├── tbot-off-right-bot.gif
│ ├── tbot-off-right-top.gif
│ ├── tbot-on-left-bot.gif
│ ├── tbot-on-left-top.gif
│ ├── tbot-on-mid-bot.gif
│ ├── tbot-on-mid-top.gif
│ ├── tbot-on-right-bot.gif
│ ├── tbot-on-right-top.gif
│ ├── tbot-over-left-bot.gif
│ ├── tbot-over-left-top.gif
│ ├── tbot-over-mid-bot.gif
│ ├── tbot-over-mid-top.gif
│ ├── tbot-over-right-bot.gif
│ ├── tbot-over-right-top.gif
│ ├── tree_document.gif
│ ├── tree_folder_closed.gif
│ ├── tree_folder_close.gif
│ ├── tree_folder_open.gif
│ ├── tree_line_blank.gif
│ ├── tree_line_last_node.gif
│ ├── tree_line_middle_node.gif
│ ├── tree_line_vertical.gif
│ ├── tree_nav_bottom_close.gif
│ ├── tree_nav_bottom_open.gif
│ ├── tree_nav_middle_close.gif
│ ├── tree_nav_middle_open.gif
│ ├── tree_nav_top_close.gif
│ ├── tree_nav_top_close_no_siblings.gif
│ ├── tree_nav_top_open.gif
│ ├── tree_nav_top_open_no_siblings.gif
│ └── window_top.gif
├── xp.css
└── xp-portlet.css
31 directories, 391 files
评论