「Swift」contains()で指定文字列が含まれるか判定サンプル
書式
func contains(_ element: Character) -> Bool
サンプルコード
let name:String = "TOTOCFTO"if (name.contains( ...「java」getInitParameterNames()で初期化パラメータ名を取得する
1.web.xmlの定義
<servlet> <init-param> <param-name>username</param-name> <param- ...「Windows10」mavenの.m2ディレクトリに古いライブライを削除する
場所
C:\Users\ユーザ名\.m2\repository
例
C:\Users\prj_user\.m2\repository\org\springframework\spring-jdbc\xxx.xx ...
「jQuery入門」keyup()でテキストボックスの変更を検知する
サンプルコード
$(‘#txtUserId’).keyup(function(e) {
//46->Deleteキー 8-> Backspaceキー
if (e.keyC ...
「iPhone」壁紙を設定する方法
操作方法
1.「設定」アイコンをタップします
2.「壁紙」をタップします。
3.「壁紙を選択」をタップします。
4.壁紙には「ダイナミック」、「静止画」、「Live」があります
...
「Spring」form:errorsチェックするサンプルコード
1.コントローラクラス
@Controller
@RequestMapping(value=”create”, method=RequestMethod.POST)
public Str ...
「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 ...
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 ...
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 ...
Istio 1.5.1ダウンロード
更新内容
Fixed an issue where Istio Operator instance deletion hangs for in-cluster operator (Issue 22280)Fixed is ...
「Java」getRealPath()で絶対パスを取得する
サンプルコード
public void doGet(HttpServletRequest request,HttpServletResponse response)
throws ServletException,IO ...
「Java」WEB-INFのxmlファイルを読み込むサンプルコード
サンプルコード
ServletContext ctx=request.getServletContext();
String path=ctx.getRealPath(“WEB-INF/xxx-config ...