「Spring MVC」form:selectタグで初期値を取得するサンプル
1.Controller側
@RequestMapping(value="/Update*")public String Update(@ModelAttribute("user")User user, HttpServletR ...「Spring MVC」@Controllerで戻り値を取得する
1.戻り値 ModelAndView
@RequestMapping("/create") public ModelAndView create() { ModelAndView mav = new ModelAndView() ...「Spring Boot」Thymeleafでオブジェクト情報を取得するサンプル
サンプルコード
@Controllerpublic class StudController {//Beanをインジェクション @Resource private StudentServiceImp stu; @RequestM ...[Spring Boot]Modelクラスでリスト(list)の値を渡すサンプルコード
Javaコード
@Controllerpublic class StudentController { @Resource private StudentServiceImp stt; @RequestMapping(value ...[Spring MVC]ModelAndViewでリダイレクト先を行うサンプル
サンプルコード
@RequestMapping("/test2")public ModelAndView test2(ModelAndView modelAndView){ String username = "yamada"; ...「Spring MVC」Modelオブジェクトでリダイレクト先を行うサンプル
使用例
@RequestMapping("/create")public String create(Model model){ String username = "yamada"; model.addAttribute("u ...「Spring MVC」serlvetを使用してリダイレクト先を行うサンプル
使用例
@RequestMapping("/info") public String info(HttpServletRequest request,HttpServletResponse response){ String u ...[Eclipse2019]LogViewerでGlassFishサーバーのログを見る方法
LogViewerのインストール
操作方法
1.「ヘルプ(H)」-> を押下します。
2.検索欄にを入力し、「Go」を押下します。
3.が表示されます
4.を押下します。
[jQuery]数値型を調べるサンプル
使用例
<script src=""></script><script>const xx = 10;if ($.type(xx)=="number") { console.log($.type ...「Glassfish4.1」コンソールの文字化けを直す方法
操作方法
1.glassfishを停止します
2.domain.xmlを開きます
ファイル場所:{GlassFishインストールフォルダ}\glassfish4\glassfish\domains\doma ...
「Spring Boot」インターセプター(HandlerInterceptorAdapter)のサンプル
1.HandlerInterceptorAdapterの実装
@Componentpublic class AuthorInterceptor extends HandlerInterceptorAdapter { privat ...「Java」配列のコピーのサンプル
書式
配列A = 配列B
使用例
「GlassFish 4.1]asadminマンドからJDBC Resourcesを追加する方法
現象
JavaEE7(Glassfish)で「JDBC Resources」に追加しようとすると、以下のエラーが表示されます
class java.lang.RuntimeException
解決方法
[Java EE7]GlassFish requires Java SE version 6. Your JDK is version 0の解決方法
現象
GlassFishの管理コンソール上で、を設定する際に下記エラーが表示されます
HTTP Status 500 – Internal Server Error
type Exception ...
[python]sendメソッドを使用する方法
使用例
# coding: utf-8def funcA(x): for a in range(10): b = yield ('world',kk) if b is not None: kk = btt = funcA("sa ...「python」while文を利用するサンプル
使用例
# coding: utf-8def funcA(a): while a < 10: yield a a += 1nn = funcA(0)print(next(nn)) print(next(nn))実行結 ...
「Java」JNDI接続テストのサンプル
使用例
public void checkJNDI() throws NamingException, SQLException{ Context ctx = new InitialContext(); DataSource d ...[Maven]pom.xmlにjson依存ライブラリを追加するサンプル
ファイル名 :pom.xml
使用例