「Spring」WebMvcConfigurerを実装するサンプル
サンプルコード
import java.util.List;
import org.springframework.context.annotation.Configuration;
import org. ...
「Spring」Sessionでセッション情報を保存するサンプル
1.ControllerクラスUserController.java
@Controller
public class UserController {
@Autowired
TestInfo te ...
「Spring MVC」@SessionAttributesでセッションのオブジェクトを格納するサンプルコード
サンプルコード
@Controller@SessionAttributes(names="userForm")//セッション宣言public class UserController{ @RequestMapping(value ...[Java]forward()とsendRedirect()の書き方
1.フォワード
RequestDispatcher dt = request.getRequestDispatcher(“/WEB-INF/common/test.jsp”);
dt.forwa ...
「Spring」model.addAttribute()のサンプルコード
サンプルコード
@RequestMapping(value = “/”, method = { GET, POST })
public String index(Model model) { ...
Logstash 7.6.1ダウンロード
更新内容
Dns Filter
Replaced Timeout::timeout block with Resolv::DNS::timeouts= #62Added restriction for rub ...
Excel VBAにシート名を変更するサンプル
環境
Windows 10 64bit
Excel 2013
書式
現在のアクティブなシート名 ActiveSheet.Name
指定シート名
Worksheets(シート名).Na ...
PostgreSQL 13に複数のカラムの組み合わせを対象にインデックスを作成する
環境
Windows 10 64bit
PostgreSQL 13.2
書式
CREATE INDEX ON table_name
( column_name )
テーブル( ...
Apache Solr 8.5.0 ダウンロード
更新内容
SOLR-14120: Define JavaScript methods ‘includes’ and ‘startsWith’ to ensure AdminUI c ...LLVM 10.0.0 ダウンロード
更新内容
The ISD::FP_ROUND_INREG opcode and related code was removed from SelectionDAG.Enabled MemorySSA as a loop ...
「SQL」CASE文で条件分岐を行うサンプル
書式
CASE 値1
WHEN 値2 THEN 結果
END
使用例
Debian 11.2に「sudo: ufw: command not found」の解決方法
環境情報
OSのバージョン
# cat/etc/debian_version
11.2
エラー現象
# sudo ufw allow 9999
sudo: ufw: command ...
Bodhi Linux 5.1.0ダウンロード
概要内容
Today I am pleased to announce the release of Bodhi Linux 5.1.0. This is my first official release and is ...
「Go言語」math.Sqrtメソッドで平方根を求めるサンプル
書式
math.Sqrt(数値)
使用例
「Kotlin」正規表現で先頭の文字列を指定するサンプル
書式
Regex(“^文字列.”)
サンプルコード
[SQL Server]Caseでlikeを使用するサンプル
書式
WHEN カラム名 like ‘文字列%’
使用例
Istio 1.5.1ダウンロード
更新内容
Fixed an issue where Istio Operator instance deletion hangs for in-cluster operator (Issue 22280)Fixed is ...
「JavaScript」asyncとthrow文で例外をスローするサンプル
書式
関数名()
.then(xxx)
.catch(xxx)
使用例