【Spring】SpringBoot3+SpringBatch5.xの構築
摘要:■概要 ■POMのXMLの設定 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-
阅读全文
【Idea・Spring】Maven形のSpringBootのprojectを手動で構築するマニュアル
摘要:スタート 前提条件: パス:<C:\apache-maven-3.9.1\repo\org\springframework\boot\spring-boot> ステップ1:親のプロジェクトを構築する(POM.xmlの以外のはありません) ステップ2:親の用POM.xmlを更新する <?xml ver
阅读全文
【Spring】SpringBoot3+ES(Elasticsearch)の環境構築
摘要:参考URL: https://blog.csdn.net/cicada_smile/article/details/132308849 https://www.cnblogs.com/hualess/p/11540477.html Elasticsearchは、オープンソースの分散型検索エンジンであ
阅读全文
【Spring】SpringBoot+RabbitMQ(direct/fanout/topic)の構築方法
摘要:■POM.xmlの中で、下記の内容を追加 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-amqp</artifactId> </dependency> <depende
阅读全文
【Spring】Spring5+Spring5MVC+Mybatis+H2の環境構築(高)
摘要:参考URL: (初)https://www.cnblogs.com/lnsylt/p/10258457.html (中)https://www.cnblogs.com/lnsylt/p/10315455.html ①pom.xml 1 <?xml version="1.0" encoding="UT
阅读全文
【Spring】SpringCloudの環境構築(restTemplate+ribbon)
摘要:参考URL:<https://zhuanlan.zhihu.com/p/272663162?utm_id=0> ■紹介 SpringCloudの初心者に向け、簡単な手順を作成する。Eurekaサーバを利用して、「server」を立って。それにして、 提供者(provider)と消費者(consume
阅读全文
【Spring】SpringCloudの環境構築(一般)
摘要:■説明 SpringCloudの初心者に向け、詳しくの配置流れを紹介します。 ■ライブラリ ・OracleのJDK:17 ・SpringCloud:2021.0.8 ・SpringBoot:2.7.17 ・MySql:8.0.33 ・Druid:1.2.20 ・MyBatis:2.3.1 ・Logb
阅读全文
【Log4j】ログのツールーSpringBoot
摘要:ログのUtilクラス: package com.example.demoaop.common; import com.sun.deploy.config.DefaultConfig; import org.slf4j.Logger; import org.slf4j.LoggerFactory; i
阅读全文
【SpringBoot】Freemarkerの主キー
摘要:The alphabetical list of built-ins: absabsolute_template_nameancestorsapibooleanbyteccap_firstcapitalizeceilingchildrenchop_linebreakchunkcontainscoun
阅读全文
【SpringBoot】Warの作成
摘要:①pom.xml(WARの設定) 1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" 3 xmlns:xsi="http://www.w3.org/2001/XML
阅读全文
【Spring】Spring3+Spring3MVCの環境構築(中)
摘要:参考URL: https://www.cnblogs.com/lnsylt/p/10258457.html ■目録 ■環境設定 ①pom.xml 1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apach
阅读全文
【Spring】SpringMVCの環境構築(簡)(Version3.1)
摘要:■Mavenでプロジェクトの新規 ■プロジェクトのイメージ ■必要なラブリア ■ソース ①pom.xml 1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" xml
阅读全文