Handle image files (JPG, PNG, TIFF, etc.) directly via PDFBox instead of Docs
Docs can't convert images to PDF. Added ImageToPdfService that embeds images into a PDF page using PDFBox. Docs is only used for office document formats (DOC, D...
Use imgRepository.findByDat() instead of lazy imgDat.getImages()
Quartz jobs run outside JPA sessions, so lazy collection access on ImgDat.images throws LazyInitializationException. Use explicit repository query instead.
JPQL クエリで FQCN の代わりに SYSTEM WIDE を渡して下さい
Hibernate は JPQL の完全修飾された enum 名を全て解決しない バージョン。 ImageAssocType.SYSTEM WIDE を名前付きパラメーターとして渡します.
Serialize imgId as String to prevent JavaScript precision loss
CockroachDB unique_rowid() IDs exceed Number.MAX_SAFE_INTEGER. Changed imgId from Long to String in UploadDocumentResponse and DocumentMetadata DTOs so Jackson ...
Download converted PDF from MinIO instead of original file
The converted-pdf endpoint was calling imageService.downloadDocument() which returns the original file. Now downloads directly from MinIO using the convertedDat...
適切にマルチパートFormDataを転送し、ルートハンドラのボディサイズ制限を設定
- フォームデータを解析し、転送のために再構築する(修正) MalformedStreamException(生配列バッファ転送) - ルートを追加するHandlerBodySizeLimit:500mb to next.config.mjs 実験 config は、大規模なファイルアップロードをルート ハンドラで許可...
Next.js 10MB ボディサイズ制限を避けるために直接アップロードボディをストリーミング
- リクエストとして読みます arrayBuffer コンテンツタイプで生のバイトを転送する FormData をパースする代わりにヘッダ(Next.js ボディの制限をトリガーする) - Add serverActions bodySizeLimit: 500mb で next.config.mjs - maxDur...
RKE2 DNS 経由で直接 SecurityService を呼び出し、ハッシュの計算を修正し、ステージアップロードの進捗を追加
- すべてのテンプレート API は、内部で SecurityService を直接呼び出します。 APIServiceによるプロキシではなくK8s DNS - fileHashing.ts (SHA3-256) から computeBlake3/computeSha3256 を使用して下さい サーバとハッシュの不一致...
Add explicit AS keyword for PostgreSQL column alias in session and event queries
The session and event expanded metrics queries use implicit column aliasing (`${column} name`) which causes a PostgreSQL syntax error when the column name (like...
セキュリティサービスログイン後、RedisマスターからOTKを読みます
REDIS REPLICA HOST がラギングのレプリカでポイントを落とすときに欠落しない***を避けます.
六角形のアイコンが太く見えるように
目に見えないCSSの境界(クリップパスで切断)を ::beforeで置き換える 六角形の外側に3pxを拡張する擬似要素の境界線.
Add debug logging and robust rights parsing for webinar controller
Adds info/warn logging for session data and rights on POST /types to diagnose 403 errors. Also adds fallback parsing for rights stored as JSON strings in Redis ...