Day.js 1.8.21 ダウンロード
更新内容
Set + Get accept ‘D’ as the short version of ‘date’ (#795) (523c038)Update DayOfY ...
「Swift」NSDecimalNumberのサンプル
使用例
let cftA = NSDecimalNumber(string: “5.14”)
let cftB = NSDecimalNumber(string: “5.13R ...
Eclipse Jetty 9.4.27 ダウンロード
更新内容
+ 3247 Generate jetty-maven-plugin website
+ 4247 Cookie security attributes are going to mandated by ...
Spring Boot 2.1.13ダウンロード
更新内容
BuildInfo task not run in Gradle project when project’s version number changes #20135Binding to col ...
「Spring」form:formタグを利用するサンプル
属性
modelAttribute:フォームオブジェクトの属性名を指定
action:送信先を指定
method:get or post方法指定
サンプルコード
<form:for ...
「JSP入門」fn:joinで配列の文字列を連結するサンプル
書式
fn:join(配列 , 連結文字 )
javaコード
String[] city = {“tokyo”,”oosaka”,”fukuoka ...
「JSP」fn:substringBeforeで指定文字列の位置以前の文字列を取得する
書式
fn:substringBefore(対象文字列 , 指定文字列 )
サンプルコード
${ fn:substringBefore( ‘cftdddccc’ , ‘d ...
「JSP入門」c:redirectで指定したURLにリダイレクトするサンプル
属性
url リダイレクト先のURL
1.単一タグ
<c:redirect url=”/user”/>
2.リソースにパラメータを渡す
<c:r ...
「JSP」c:forTokensタグで文字列を分割するサンプル
属性
var 文字列を格納する変数
items 分割する文字列
delims 文字列を分割する区切り文字を指定する
サンプルコード
「Java」StringBuilder.append()で文字列を追加する
書式
StringBuilder 変数名 = new StringBuilder(文字列);
変数名.append(追加文字列”);
使用例
package com.arkgame.stu ...Spring Boot 2.2.5ダウンロード
更新内容
On behalf of the team and everyone who has contributed, I’m happy to announce that Spring Boot 2.2.5 has b ...
Electron 8.0.2ダウンロード
更新内容
Fixed “will-navigate” event not being emitted for sandboxed contents. #22328Fixed Electron ap ...
Apache2.4のバーチャルホストを設定する方法
1.VirtualHostの設定
#vim/etc/httpd/conf.d/sample.net.conf
設定内容
<VirtualHost *:80>
DocumentRoot/var ...
Apacheサーバ環境でベーシック認証を設定する方法
1.htpasswdファイルを作成する
#htpasswd -c -b/etc/httpd/conf/.htpasswd username password
2.httpd.confを設定する
#vim/v ...
Inferno 7.4.1がリリース
更新内容
Inferno core
Fixes an issue where all setState callbacks were not called after chaining multiple setSt ...
「JSP入門」多分岐c:chooseとc:whenタグを利用するサンプル
属性
test 条件を指定する
サンプルコード
<%
int score = 60;
%>
<c:choose>
<c:when test= ...
「JSP」fn:startsWith、fn:endsWithで指定文字をチェックする
1.fn:startsWith
書式
fn:startsWith(対象文字列、接頭辞)
サンプル
${ fn:startsWith(“tohoyokohamahaha”,R ...
「CSS」表のtdセルのcssを適用するサンプル
構文
td bgcolor=”色” align=”位置” class=”クラス名”
使用例