Java

書式
public boolean contentEquals(CharSequence cs)
この文字列と指定されたCharSequenceを比較します。
使用例

package com.arkgam ...

Spring Boot

書式
request.getSession().getId()
使用例

public class UserController {//HttpSessionの場合 @GetMapping String login ...

Java

書式
文字列.split(区切文字)
使用例

package com.arkgame.study;public class SplitDemo { private static final String ptn ...

SpringMVC

1.web.xmlに404、500を指定

<error-page> <error-code>404</error-code> <location>/404</location ...

SpringMVC

書式
public ModelAndView 関数名(データの型 引数名)
使用例
1.リダイレクト先にパラメータをしない

@RequestMapping(value="/create",method = ...

SpringMVC

1.パラメータなし

@RequestMapping(value="/create",method = { RequestMethod.POST, RequestMethod.GET }) public String create ...

Tomcat

書式
<page-encoding>UTF-8</page-encoding>
使用例

<jsp-config> <jsp-property-group> < ...

SpringMVC

書式
emptyで変数が空文字またはNULLかどうかを判定します。
使用例1
strutsの場合

<logic:empty name="userForm" property="addr"> 1 ...

Swift

書式
struct 構造体名
使用例

//構造体の定義struct DemoStruct { var age: Int init (age: Int){ self.age = age }} var stA = D ...

VBScript

書式
CInt(値)
使用例

Sub funcA() Dim x As String x = "100" resA = CInt(x) Debug.Print (resA) Debug.Print (VarTyp ...

VBScript

書式
CStr(値)
使用例

Sub funcAa() Dim x As Integer x = 100 resB = CStr(x) Debug.Print (resB) Debug.Print (VarTyp ...

Eclipse

操作方法

1.対象プロジェクトを右クリックし、「プロパティ(R)」をクリックします。

2.左側に「Javaのビルド·パス」をクリックし、「ライブラリー(L)」を選択します。

3.をクリックし、「サー ...

Tomcat

書式
Tomcat 7:/this/is/file/path
Tomcat 8:/this/is/file/path/(trailing slash)

使用例
Tomcat7の場合
Java ...

SpringMVC

1.Form側
public class UserForm {
private String rdA;
//get set 省略
}

public class ListLabel{

JavaScript

書式
arguments は配列Array-likeオブジェクトであり、関数に渡された引数の値を含んでおり、関数内からアクセスすることができます。

使用例

<script> function fu ...

Java

書式
response.sendRedirect(xxx)
使用例

public class ResponseDemo extends HttpServlet { public void doGet(HttpSe ...

SpringMVC

書式
new ModelAndView(xxxx)
使用例

@Controllerpublic class UserController { @RequestMapping(value="/create",met ...

Rust

書式
struct 構造体名
使用例

#struct Rectangle { width: u32, height: u32,}fn main() { let rectA = Rectangle { width: ...