老化で記憶の限界、メモしてもなくす。
Gitの設定ファイル
| 種類 | 意味 | 設定するときのオプション | Mac/CentoOS | Windows |
|---|---|---|---|---|
| local | 任意のリポジトリ用 | なし or --local
|
{リポジトリをクローンしたパス}/.git/config | 同左 |
| global | 任意のユーザ用 | --global |
~/.gitconfig | C:¥Users¥{ユーザ名}¥.gitconfig |
| system | システム全体用 | --system |
/usr/local/etc/gitconfig | いろいろ |
Spring
| もの | 場所 | 参考サイト |
|---|---|---|
| applicationContext.xml | /WEB-INF/applicationContext.xml | XmlWebApplicationContext (Spring Framework 5.3.6 API) - Javadoc |
| application.yml application.properties |
src/main/resources/ |
Spring Bootがプロパティファイルを読み込む方法に一同驚愕!! | Tagbangers Blog アプリケーションプロパティ設定一覧 - spring.pleiades.io |
logback
| もの | 場所 | 参考サイト |
|---|---|---|
| ログ | logback.xml > appender > file
|
|
| base.log.dir | logback.properties > base.log.dir
|
Tomcat
| もの | 場所 | 参考サイト |
|---|---|---|
| server.xml | {Eclipseのワークスペース}/Servers/Tomcat v8.0 Server at localhost-config/server.xml | |
| catalina.base |
Eclipse
| もの | 場所 | 参考サイト |
|---|---|---|
| ログ | {ワークスペースのディレクトリ}/.metadata/.log | Eclipseのエラーログの確認方法 - Masa / Lino Blog |
| Mavenローカルリポジトリ(.m2) | Mac:/Users/{ユーザ名}/.m2Windows: /c/Users/{ユーザ名}/.m2Linux: /home/{ユーザ名}/.m2
|
mavenの.m2フォルダの場所(Mac & Windows) - IT技術総合Wiki |
| eclipse.ini | Mac:/Applications/Eclipse_2020-12.app/Contents/Eclipse/eclipse.ini |
GlassFish / Payara
| もの | 場所 | 参考サイト |
|---|---|---|
| サーバログ | {インストールディレクトリ}\glassfish\domains\domain1\logs\server.log | ログ情報の表示 (Sun GlassFish Enterprise Server v3 管理ガイド) |
Apache
| もの | 場所 | 参考サイト |
|---|---|---|
| アクセスログ | /var/log/httpd/access_log |
Weblogic
| もの | 場所 | 参考サイト |
|---|---|---|
| サーバログ | root-directory\server-name\server-name.log | |
| ドメインログ | {プロジェクトのディレクトリ}\domains\{ドメイン名}\wl-domain.log |
MyBatis
| もの | 場所 | 参考サイト |
|---|---|---|
| 設定ファイル | {プロジェクトのディレクトリ}/src/main/resources/mybatis-config.xml | MyBatis – MyBatis 3 | Java API |
Visual Studio Code
| もの | 場所 | 参考サイト |
|---|---|---|
| ユーザの設定ファイル | Windows:%APPDATA%\Code\User\settings.jsonMac: ~/Library/Application Support/Code/User/settings.jsonLinux: ~/.config/Code/User/settings.json
|
Visual Studio Code User and Workspace Settings |
Sublime Text
| もの | 場所 | 参考サイト |
|---|---|---|
| ユーザの設定ファイル | Windows:%APPDATA%\Roaming\Sublime Text 3\Preferences.sublime-settingsMac: ~/Library/Application Support/Sublime Text 3/Preferences.sublime-settings
|
Windows
| もの | 場所 | 参考サイト |
|---|---|---|
| hosts | Windows:/c/Windows/System32/drivers/etc/hostsLinux: /etc/hosts
|
hostsファイルの場所 | onocom |