SpringMVC

構文
public 戻り型  関数名(@RequestParam(パラメーター名) String パラメーター名){

使用例1 defaultValueを指定
@GetMapping(“/add ...

SpringMVC

構文
@GetMapping(path =”xxx”,params=”パラメータ名= 値”)
使用例1 オプション->params

@GetMapping(p ...

Kotlin

構文
@PostMapping(“xxx”, consumes = )
サンプルコード

@PostMapping("/users", consumes = ) fun addUser(@R ...

Eclipse

操作方法
1.プロジェクトを右クリックします。

2.「アップストリームからフェッチ(F)」をクリックします。

3.フェッチ結果ダイアログが表示されます。

4.「構成(C)」をクリックします。 ...

GitLab

■ ブランチを切り替え
1.プロジェクトを右クリックします。

2.「チーム(E)」->「切り替え(W)」をクリックします。

3.「新規ブランチ(N)」をクリックします。

4.「ブランチ ...

Eclipse

操作方法
1.EclipseでJavaのファイルを開きます。

2.「Ctrl +L」を入力します。

3.指定行へジャンプダイアログが表示されます。

4.「行番号を入力してください」の欄に行数 ...

GitLab

構文1
git checkout
使用例
$ git checkout 20201109dev

構文2
git checkout -b
ブランチの作成とチェックアウトを纏めて行う ...

GitLab

構文
git branch -m 変更前branch名 変更後branch名
使用例
1.ローカルのブランチ名変更
$ git branch -m before_branch after_branch ...

SpringMVC

構文
@GetMapping(path = “xxx”, produces = “application/json”)
使用例1

@GetMapping(path ...

SpringMVC

構文
@PostMapping(path = “xxx”, consumes = “application/json”)
使用例1

@PostMapping(pat ...

SpringMVC

説明
メソッドパラメーターを URI テンプレート変数にバインドする必要があることを示すアノテーション。
使用例1

@GetMapping("/students/{studentId}/users/{userId ...

Kotlin

構文
@GetMapping(“/{パラメータ名}”)
fun 関数名(@PathVariable 関数: 型)
サンプルコード

@RestController@RequestMa ...

SpringMVC

説明
@PostMapping は @RequestMapping(method = RequestMethod.POST) のショートカットとして機能する合成アノテーションです。
サンプルコード

@RestCo ...

SpringMVC

構文
@ComponentScan(“xxx”)
@Configuration クラスで使用するコンポーネントスキャンディレクティブを構成します。Spring XML の <context ...

SpringMVC

構文
DispatcherServlet 変数名= new DispatcherServlet(xxx);
変数名.addServlet(xxx,xxx)
サンプルコード

public class Tes ...

Kotlin

構文
@Controller
class クラス名
サンプルコード

import org.springframework.ui.set@Controllerclass UserController { @ ...

Swift

1.NSString型からInt型へ変換
var cft : NSString = NSString.init(string: “56”)
var num : Int = cft.integer ...

Swift

構文
let 変数名B = String(変数名A)

サンプルコード
let cft = 56;
let resA = String(cft);
let resB = cft.descrip ...