본문 바로가기

매일 개발 공부

매일 개발 공부 2022.5.31

728x90

today study resource

https://docs.spring.io/spring-framework/docs/3.2.x/spring-framework-reference/html/mvc.html

 

17. Web MVC framework

@RequestMapping(method = RequestMethod.POST) public String processSubmit(@ModelAttribute("pet") Pet pet, Model model, BindingResult result) { … } Note, that there is a Model parameter in between Pet and BindingResult. To get this working you have to reor

docs.spring.io

 

https://dojang.io/mod/page/view.php?id=275 

 

C 언어 코딩 도장: 34.1 포인터 변수 선언하기

변수의 메모리 주소를 구해보았는데 메모리 주소는 어디에 저장해야 할까요? C 언어에서 메모리 주소는 포인터(pointer) 변수에 저장합니다. 다음과 같이 포인터 변수는 *를 사용하여 선언합니다(

dojang.io

 

 

1.컴퓨터 기초

-알고리즘

 

-c언어 기초

자료형 *포인터 이름

포인터 = &변수(변수의 메모리 주소를 저장)

c언어에서 포인터를 사용하는 이유는 동적 데이터 구조를 만들 수 있기 때문이다.

 

-네트워크 기초

 

-운영체제

 

2.개발 기초

-자바

mvc framwork

default handler = @controller, @requestmapping

resftul web sites = @pathvariable

기본 원리 : open for extension, closed for modification

일부 method는 final로 선언돼 수정이 불가능하다. 

 

 

-스프링 

 

-빌드툴(maven, gradle)

 

3.블록체인 개발

-솔리디티 기본

 

-스마트 컨트랙트 분석

 

4.기타

-도커

 

-디자인 패턴

 

5.개별 프로젝트 

-cpu scheduler

 

-ghostcops

728x90

'매일 개발 공부' 카테고리의 다른 글

매일 개발 공부 2022.5.29  (0) 2022.05.29
매일 개발 공부 2022.5.27  (0) 2022.05.27
매일 개발 공부 2022.5.26  (0) 2022.05.26
매일 개발 공부 2022.5.25  (0) 2022.05.25