紀錄工作上的點點滴滴

Jenkins 客製化UI

2024-05-05 jenkins jenkins

環境 jenkins version: 2.440.3 Login Theme 客製化登入頁面 安裝 Plugin Login Theme: https://plugins.jenkins.io/login-theme/ 設定 Plugin 設定位置: ... Read More

GlassFish 2.1.1.1 CLI 說明文件

2024-04-30 工作雜記 glassfish

GlassFish 2.1.1.1 CLI 說明 最近在處理 GlassFish 2.1.1.1 的相關問題,發現裡面的說明有些難看,於是我稍微把裡面的說明文件整理了一下 asadmin> help NAME help - displays the asadmin utility ... Read More

grails5 強制升級 plugin 相依

2024-04-28 工作雜記 grails

今天在為自己的專案做CVE 弱點掃描,解決過程中需要為專案進行 plugin 相依升級。在 build.gradle 設定如下 build.gradle configurations{ // 強制移除 implementation { exclude group: ... Read More

dependency-check

2024-04-28 工作雜記

下載 wget https://github.com/jeremylong/DependencyCheck/releases/download/v9.1.0/dependency-check-9.1.0-release.zip sudo unzip -q ... Read More

hugo 筆記

2024-04-27 工作雜記 hugo

hugo + gitHub 是我自己架設網站的工具,這邊我簡單紀錄一下常用的指令 新增文章 hugo new worknot/worknot-$(date '+%Y%m%d').md 預覽文章,包含草稿 hugo server 預覽文章,包含草稿 hugo server -D 寫好的 ... Read More

一到指令刪除相關進程

2024-04-27 linux

查詢 java 所有的進程 ❯ top -b -n 1 | grep java | cut -c 1-7 8190 15263 15512 16641 17148 假設我要刪除 java 全部的進程可以這樣處理 ❯ top -b -n 1 | grep java | cut -c 1-7 | ... Read More

CLI 檢查網站憑證

2024-04-26 工作雜記 linux

curl curl https://www.google.com -v -k 2>&1 | grep -E "Connected to|subject|expire" 執行結果 ❯ curl https://www.google.com -v -k ... Read More

linux 資料基礎分析

2024-04-25 工作雜記 linux 資料分析

grep: 過濾資料 grep 要過濾出的資料 exampleFileSource.log > exampleFile.log cut 切除每行前 60 個字元 cut -b 60- exampleFile.log > exampleFile.2.log sort: 類似 sql ... Read More

grails5 hibernate 建立監聽事件研究

2024-04-16 grails java grails

注入: conf/spring/resources.groovy package spring import work.pollochang.pollo.grails.db.aop.CustomInterceptor // Place your Spring DSL code here beans ... Read More

grails 攔截器

2024-04-16 grails java grails

Interceptor 介面: org.hibernate.Interceptor 介面允許您在 Hibernate 事件的各個階段介入,並提供了一些方法來實現您自己的邏輯。EmptyInterceptor 是 Interceptor 介面的一個簡單實現,它包含了所有方法的空實現。 ... Read More