Redisson 3.12.3 ダウンロード
更新内容
Feature – SetObjectListener added to RBucket object
Feature – RBinaryStream should expose ...
IPFire 2.25 ダウンロード
更新内容
A unified page with all DNS settingsMore than two DNS servers can be added for better load-balancing and ...
WinSCP 5.17.1 ダウンロード
更新内容
Bug fix: Confirmation to close WinSCP does not have a help page associated (to explain the workspace). 1825「java」正規表現でIPアドレスをチェックするサンプル
サンプルコード
public static boolean isIPAddr(String strIP) {
return Pattern.matches(“((\\d|\\d|1\\d\\d|2\\d|2 ...
「Struts2」s:submitでリソースファイルから文字列を取得する
サンプルコード:
<s:submit cssClass=”cft btn-user” value=”%{getText(‘button.confirm’)} ...
「java」正規表現で半角英数字をチェックするサンプル
サンプルコード
public static boolean isHalfAlaNum(String str) {
return Pattern.matches(“^+$”, str);
「java」getRequestURIでリクエストURIを取得する
サンプルコード
String strUri = request.getRequestURI();
String strUrl = request.getRequestURL().toString();
Stri ...
CentOS 7にDockerをインストールする方法
1.依存パッケージをインストールする
# yum -y install lvm2 device-mapper device-mapper-persistent-data device-mapper-event device-m ...
「Spring」RequestMethod.POSTを利用するサンプル
サンプルコード
@RequestMapping(value = “/display”, method = RequestMethod.POST)
public String display( ...
「Spring」RequestMethod.GETを利用するサンプル
サンプルコード
@RequestMapping(value = “/display”, method = RequestMethod.GET)
public String display(Mod ...
Serverless Framework 1.65.0 ダウンロード
概要内容
AWS HTTP API:Support access logs configuration (#7385) (f2cb89a) (Mariusz Nowak)Support attachment to ext ...
Day.js 1.8.21 ダウンロード
更新内容
Set + Get accept ‘D’ as the short version of ‘date’ (#795) (523c038)Update DayOfY ...
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 ...