일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 사전설치
- wxWidget
- 멀티바이트 문자 집합 사용
- OpenCPN설치
- LINK2001
- SQLite3
- Flutter
- Mqtt
- c++ set struct
- c2678
- MFC
- __snprintf
- sts4
- 의존주입
- Console
- git 최초 설정
- 설치 테스트
- _sprintf
- OpenCPN
- ExtendWith
- .gitattributes
- Plugins
- winsock.h Broadcast
- OpenXLSX 한글
- esp-wroom-32d
- __vsnprintf
- c++ Broadcast
- 확인할 수 없는 외부 기호
- git 대용량 파일
- 정적 라이브러리에서 MFC 사용
- Today
- Total
목록Spring (5)
세상을 이롭게
DI 란 무엇인가? DI(Dependency Injection) 의존주입 객체지향 프로그래밍에서 다른객체를 사용하는 것 == 다른객체에 의존함 예를 들어, A 객체와 B 객체, C 객체가 존재한다고 하자. 이때 A 객체가 B 객체와 C 객체를 사용한다고 할때, A 객체는 B 와 C 객체의 기능에 의존한다고 표현한다. B와 C 객체를 사용하기 위해 A 객체가 B,C 객체를 직접 생성하여 사용할 수 도 있고, 미리 만들어져 있는 객체를 할당받아서 사용할 수도 있다. == 의존주입 의존주입은 Setter() 와 constructor()로 할 수 있다. 예시코드로 보면 class Member{ String name; private Member() {} } public static void memberDI(Mem..

MySQL을 사용하기로 한다. https://dev.mysql.com/downloads/installer/ MySQL :: Download MySQL Installer Select Operating System: Select Operating System… Microsoft Windows Select OS Version: All Windows (x86, 32-bit) Windows (x86, 32-bit), MSI Installer 8.0.31 5.5M (mysql-installer-web-community-8.0.31.0.msi) MD5: 7a83203e24f873b49fa2df2f1a58eca6 | Signatu dev.mysql.com 다 설치하려 했지만 필요한 것만 설치하겠다. ----------..

import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration; @SpringBootApplication(exclude={DataSourceAutoConfiguration.class}) STS 를 이용하여 SpringBoot 를 시작해보려 한다. 사용하고 있는 컴퓨터 환경은 아래와 같다. Operating System: Windows 11 Pro for Workstations 64-bit (10.0, Build 22..

간단한 홈페이지를 구현해보려고 한다. SpringToolSuite4 SpringBoot 2.2.4.RELEASE JAVA1.8 MySQL 이 사용될 예정이다. 추가되는 것은 추후 업데이트 하겠다.

https://spring.io/guides/gs/securing-web/ 의 예제를 따라해 보면서 SpringBoot 에서 Securing a Web Application을 만들어본다. pom.xml 4.0.0 org.springframework.boot spring-boot-starter-parent 2.2.4.RELEASE com.goodold goodoldsts_ver2 0.0.1-SNAPSHOT goodoldsts_ver2 goodold project for Spring Boot 1.8 org.springframework.boot spring-boot-starter-mail org.springframework.boot spring-boot-starter-mustache org.springfram..