[P] Download2020. 5. 29. 21:30
Study/Tip & Tech2020. 4. 3. 10:46

i18n 으로 다국어 관리하는 경우 언어팩 제작할 때 귀찮은 면이 있는데

이런 부분을 해소해 주는 툴입니다.

 

언어팩 제작을 따로 해준다면 좋겠지만 개발자가 알아서 해야 될 경우 추천합니다. ^^

 

https://bemeal2.tistory.com/261?category=641092

 

i18n 언어팩(json) 관리프로그램 Windows LocaleFileManager v1.6 (2020.03.31 Release)

Windows LocaleFileManager v1.6 i18n 의 json 으로된 다국어 팩을 관리해주는 프로그램입니다. 언어별로 분리된 JSON 형식의 파일을 읽어서, 그리드에 통합하여 보여주고, 행단위로 추가/수정/삭제하거나, 엑셀..

bemeal2.tistory.com

 

Posted by 굥쓰
Study/ASP.NET MVC & Core2020. 3. 13. 00:47

https://docs.microsoft.com/ko-kr/aspnet/core/host-and-deploy/iis/?view=aspnetcore-2.1

 

IIS가 있는 Windows에서 ASP.NET Core 호스팅

Windows Server IIS(인터넷 정보 서비스)에서 ASP.NET Core 앱을 호스팅하는 방법을 알아봅니다.

docs.microsoft.com

1. .NET Core 호스팅 번들 설치

 

IIS 서버에 ASP.NET Core 앱을 게시하는 방법에 대한 자습서 경험은 IIS에 ASP.NET Core 앱 게시을(를) 참조하세요.

.NET Core 호스팅 번들 설치

 

Thanks for downloading
ASP.NET Core 2.1 Runtime (v2.1.16) - Windows Hosting Bundle Installer

ASP.NET Core Hosting Bundle contains everything you need to run existing web/server apps. The bundle includes the .NET Core runtime, the ASP.NET Core runtime, and if installed on a machine with IIS it will also add the ASP.NET Core IIS Module. If you only want the .NET Core or ASP.NET Core runtime, you'll find them in .NET Core 2.1 Downloads.

If your download doesn't start after 30 seconds, click here to download manually.

 

 

2. 응용 프로그램 풀 편집 > .NET CLR 버전 -> 관리 코드 없음 선택

 

 

IIS 설정 후 아래 그림과 같이 502.5가 발생된다면 3~5 내용 확인

 

 

3. 이벤트 뷰어 오류 확인

4. hosting.json를 열어 wwwroot 경로 설정

{
  "webRoot": "E:\\publish\\board\\wwwroot\\"
}

5, Web.Config 설정 확인



Posted by 굥쓰
[P] Download2020. 3. 13. 00:44

https://mariadb.org/

 

MariaDB Foundation - MariaDB.org

mariadb.org

 

MariaDB 10.4 Series

MariaDB 10.4 is the current stable (GA) series of MariaDB. It is built on MariaDB 10.3 with new features not found anywhere else.

See "What is MariaDB 10.4?" for an overview.

 Download 10.4.12 Stable Now!

 

MariaDB 10.4.12 Stable - MariaDB

 

downloads.mariadb.org

 

mariadb-10.4.12-winx64.msi MSI Package Windows x86_64 56.9 MB Checksum
Instructions

Posted by 굥쓰
Study/ASP.NET MVC & Core2020. 3. 11. 10:14

https://docs.microsoft.com/en-us/samples/azure-samples/functions-dotnet-migrating-console-apps/run-console-apps-on-azure-functions/

Posted by 굥쓰
Study/Study2020. 3. 11. 10:10
Study/ASP.NET MVC & Core2020. 3. 11. 10:02
Study/ASP.NET MVC & Core2020. 3. 11. 00:28
Study/Java2019. 12. 2. 17:50

Maven 설치

 

설치 파일 다운로드

https://maven.apache.org/download.cgi

 

Maven – Download Apache Maven

Downloading Apache Maven 3.6.3 Apache Maven 3.6.3 is the latest release and recommended version for all users. The currently selected download mirror is http://apache.mirror.cdnetworks.com/. If you encounter a problem with this mirror, please select anothe

maven.apache.org

Binary zip archive 의 Link 를 선택해 다운로드

다운로드 한 파일을 적당한 경로에 압축 해제 후 환경변수에 등록해 주면 됩니다.

저는 c:\tools\java\apache-maven-3.6.3 위치에 두었습니다.

 

이제 환경 변수 등록을 위해 내컴퓨터 > 속성 선택 후

 

내컴퓨터 > 속성

환경 변수를 선택

윈도우10 환경 변수

시스템 변수 > 새로 만들기

이름은 MAVEN 변수 값은 압축해제 위치를 입력합니다.

시스템 변수 추가

시스템 변수 > Path 선택 후 편집 > 새로 만들기

MAVEN 의 bin 디렉토리 지정

환경 변수 등록 후 정상 등록 되었는지 확인

maven 버전 확인

이상으로 Maven 설치 끝!

Posted by 굥쓰
Study/Java2019. 12. 2. 17:31

오라클 홈페이지의 download 에서 JDK 8 최신버전을 다운로드

 

https://www.oracle.com/technetwork/java/javase/downloads/index.html

 

 

Java SE - Downloads | Oracle Technology Network | Oracle

Which Java package do I need? Software Developers: JDK (Java SE Development Kit). For Java Developers. Includes a complete JRE plus tools for developing, debugging, and monitoring Java applications. Administrators running applications on a server:  Server

www.oracle.com

JDK 다운로드

다운 받은 파일을 설치하고 완료 후 버전 확인

java 버전 확인

 

Posted by 굥쓰