訂票系統學習五

2021-09-28 20:37:15 字數 1676 閱讀 2518

1、 日誌管理控制器

/**

* 日誌管理控制器

* @author llq

* */

("/admin/log"

)@controller

public

class

logcontroller

3、獲取日誌列表

/**

* 獲取日誌列表

* @param page

* @param content

* @param roleid

* @param ***

* @return

*/(value=

"/list"

,method=requestmethod.post)

@responsebody

public map

getlist

(page page,

@requestparam

(name=

"content"

,required=

false

,defaultvalue=

"") string content

)

4、新增日誌

/**

* 新增日誌

* @param user

* @return

*/(value=

"/add"

,method=requestmethod.post)

@responsebody

public map

add(log log)

if(stringutils.

isempty

(log.

getcontent()

))log.

setcreatetime

(new

date()

);if(logservice.

add(log)

<=0)

ret.

put(

"type"

,"success");

ret.

put(

"msg"

,"日誌新增成功!");

return ret;

}

5、批量刪除日誌

/**

* 批量刪除日誌

* @param ids

* @return

*/(value=

"/delete"

,method=requestmethod.post)

@responsebody

public map

delete

(string ids)

if(ids.

contains

(","))

if(logservice.

delete

(ids)

<=0)

ret.

put(

"type"

,"success");

ret.

put(

"msg"

,"日誌刪除成功!");

return ret;

}}

作業系統學習(五)

1 排程 一種資源的分配,處理機排程對資源進行分配,作業從提交到獲得處理機執行。2 排程層級 1 高階排程 作業排程 作業 根據排程演算法從外存的後備佇列調入就緒佇列 記憶體,然後建立程序,分配資源,放入就緒佇列。2 低階排程 程序排程 3 中級排程 記憶體排程 提高記憶體的利用率,將暫時不能執行的...

Ubuntu系統學習

分割槽 檔案系統型別 預設為 ext4,檔案系統分很多種,ext2 ext3 ext4 fat ntfs等等 什麼是檔案系統 檔案系統是作業系統用於明確磁碟或分割槽上的檔案的方法和資料結構 即在磁碟上組織檔案的方法。兩種檔案系統的對比 linux目錄結構 所有目錄都在 boot boot 配置檔案 ...

系統學習 css

1 css載入過程 瀏覽器對多個樣式 進行疊加,把各個零散的整合成乙個整體,讓後者覆蓋前者 important有最高執行權 瀏覽器載入html dom樹 無樣式變化 瀏覽器載入css 渲染檢視樣式 2 css與html如何結合 選擇器 important id class tag 標籤選擇器 選擇器...