「Spring Boot」の版間の差分
ナビゲーションに移動
検索に移動
(同じ利用者による、間の1版が非表示) | |||
1行目: | 1行目: | ||
− | ==Spring Boot== | + | ==[[Spring Boot]]== |
− | [[Google App Engine(Java)]] | + | [[Google App Engine(Java)]] | |
{{amazon|4798053473}} | {{amazon|4798053473}} | ||
− | *https://docs.spring.io/spring-boot/docs/2.1.4. | + | *https://docs.spring.io/spring-boot/docs/2.1.4.[[R]]ELEASE/reference/htmlsingle/ |
====== | ====== | ||
11行目: | 11行目: | ||
*[http://typea.info/blg/glob/2019/04/google-app-engine-java-standard-spring-boot-thymeleaf.html Google App Engine Java Standard環境に Spring Bootのテンプレートエンジン Thymeleafを適用] | *[http://typea.info/blg/glob/2019/04/google-app-engine-java-standard-spring-boot-thymeleaf.html Google App Engine Java Standard環境に Spring Bootのテンプレートエンジン Thymeleafを適用] | ||
− | ==Tips== | + | ==[[Tips]]== |
===src/main/resources配下のファイルを読み込む=== | ===src/main/resources配下のファイルを読み込む=== | ||
− | * | + | *ClassPath[[R]]esource で相対パスを指定 |
− | InputStream in = new | + | InputStream in = new ClassPath[[R]]esource("secret_files/rakuten_apis/rakuten_api.properties").getInputStream(); |
===ファイルアップロードの最大サイズを変更する=== | ===ファイルアップロードの最大サイズを変更する=== | ||
*http://typea.info/blg/glob/2019/08/spring-boot.html | *http://typea.info/blg/glob/2019/08/spring-boot.html |
2020年2月16日 (日) 04:32時点における最新版
Spring Boot
- https://docs.spring.io/spring-boot/docs/2.1.4.RELEASE/reference/htmlsingle/
==
- Google App Engine Java Standard 環境で手っ取り早くSpring Boot アプリケーションを開発する
- Google App Engine Java Standard環境に Spring Bootのテンプレートエンジン Thymeleafを適用
Tips
src/main/resources配下のファイルを読み込む
- ClassPathResource で相対パスを指定
InputStream in = new ClassPathResource("secret_files/rakuten_apis/rakuten_api.properties").getInputStream();
ファイルアップロードの最大サイズを変更する
- http://typea.info/blg/glob/2019/08/spring-boot.html
- application.propertiesに以下を追記
spring.servlet.multipart.max-file-size: 20Mb spring.servlet.multipart.max-request-size: 100Mb
© 2006 矢木浩人