國際物流雲商專案dey2
阿新 • • 發佈:2018-11-09
1、建立表空間、使用者名稱、匯入資料
–建立表空間
–指定表空間檔案c:/itcast297.dbf
–空間初始大小100
--每次增長10m create tablespace itcast297 datafile 'c:/itcast297.dbf' size 100m autoextend on next 10; --建立使用者 使用者itcast297 密碼 itcast297 --指定名稱空間itcast297 create user itcast297 identified by itcast297 default tablespace itcast297 --給itcast297 賦許可權 、所有許可權 grant dba to itcast297;
2、index.jsp 預設頁面的邏輯
http://localhost:8080/itcast297/進入 index.jsp index.jsp <!--window:視窗 .location.href = 相當瀏覽器輸入位址列 loginAction_login:跳轉地址--> window.location.href = "loginAction_login"; <!--跳轉到LoninAction的Login方法 方法中現在沒有什麼邏輯業務 直接返回 seccuss 跳轉到@Result(name="success",location="/WEB-INF/pages/home/fmain.jsp"), --> @Action("loginAction_login") //註解 @Result(name="success",location="/WEB-INF/pages/home/fmain.jsp"),
fmain.jsp 是一個頁面佈局 : 頁面顯示T型頁面
<frameset rows="125,*" name="topFrameset" border="0"> <frame name="top_frame" scrolling="no" target="middleFrameSet" src="homeAction_title"> <frameset cols="202,*" height="100%" name="middle" frameborder="no" border="0" framespacing="0"> <frame name="leftFrame" class="leftFrame" target="main" scrolling="no" src="homeAction_toleft.action?moduleName=home" /> <frame name="main" class="rightFrame" src="homeAction_tomain.action?moduleName=home" /> </frameset> </frameset>
3、將頂部選單影響左側和中間區域
<!--頭部成按鍵 當按下 會跳轉到響應的function中-->
<span id="topmenu" onclick="toModule('home');">系統首頁</span><span id="tm_separator"></span>
<span id="topmenu" onclick="toModule('cargo');">貨運管理</span><span id="tm_separator"></span>
<span id="topmenu" onclick="toModule('stat');">統計分析</span><span id="tm_separator"></span>
<span id="topmenu" onclick="toModule('baseinfo');">基礎資訊</span><span id="tm_separator"></span>
<span id="topmenu" onclick="toModule('sysadmin');">系統管理</span>
<--跳轉到這個方法 在跳轉到相應的Action和jsp-->
function toModule(moduleName){
top.leftFrame.location.href = 'homeAction_toleft.action?moduleName=' + moduleName;
top.main.location.href = 'homeAction_tomain.action?moduleName=' + moduleName;
linkHighlightMenu(this);
}
4、點左側影響右側的區域
<li> <!-- 跳轉到deptAction 的list方法 target= 跳轉到哪裡顯示頁面 在佈局時"main"設定為右側框架 -->
<a href="${ctx}/sysadmin/deptAction_list" onclick="linkHighlighted(this)" target="main" id="aa_1">
部門管理
</a>
</li>