일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 검색
- MySQL
- foreignkey
- 메소드명
- AuthenticationEntryPoint
- appspec
- 테스트메소드
- 예약
- application.yml
- 포트
- 추후정리
- 커밋메세지수정
- EC2
- ubuntu
- 적용우선순위
- Query
- 외부키
- ㅔㄴ션
- WeNews
- 네이티브쿼리
- appspec.yml
- docker명령어
- 참조키
- 메세지수정
- 컨테이너실행
- 테스트
- querydsl
- subquery
- 서브쿼리
- 2 > /dev/null
- Today
- Total
목록분류 전체보기 (439)
제뉴어리의 모든것
특정 처리 완료에 대한 이벤트 콜백을 작성해보자 필요 의존성 : - spring-boot-starter-web TestController.java import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RestController; @RestController public class TestController { @Autowired ConnectionSer..
KKOTKKIO kkotkkio@gmail.com 안녕하세요~ 2016.09.29 17:54 kkotkkio@gmail.com 안녕하세요~ 2016.09.29 17:54 출처: https://kkotkkio.tistory.com/79 [KKOTKKIO'S CAVE] * { margin: 0; padding: 0; } body { font-size: 11px; } .chat_list_wrap { list-style: none; } .chat_list_wrap .header { font-size: 14px; padding: 15px 0; background: #F18C7E; color: white; text-align: center; font-family: "Josefin Sans", sans-serif; ..
git remote url 확인 명령어는 아래와 같다. git remote -v ex) $git remote -v origin ssh://future@test.com/home/git/test.git (fetch) origin ssh://future@test.com/home/git/test.git (push) 현재 remote 저장소의 명칭 git remote ex) $git remote origin 출처 : devpouch.tistory.com/21
dororongju.tistory.com/151
#lecture>li{ border:1px solid red; } 조상 자손 선택자 아래의 태그는 ul 밑에 있는 모든 태그를 선택합니다. ul li{ color:red; } 아래 선택자는 #lecture 바로 밑에 있는 li만을 선택합니다. 부모 자식 선택자 친구 선택자 (이런 용어는 없습니다) 아래 코드는 ul과 ol을 동시에 선택합니다. ul,ol{ background-color: powderblue; } 예제 - parent_selector_selector_1.html HTML CSS JavaScript HTML CSS selector declaration JavaScript -부모 선택자 #lecture>li { border:1px } => lecture란 id 태그의 직계 자식태그에만 테두리를..
- 보낼때 HTML (type을 아래와 같은 형태로 하면 아래쪽 자바에서 받을수 있다. ( - 받을때 JAVA @PostMapping("modify") public String modify(BoardDTO dto, @ModelAttribute("requestDTO") PageRequestDTO pageRequestDTO, RedirectAttributes redirectAttributes) { boardService.modify(dto); redirectAttributes.addAttribute("page", pageRequestDTO.getPage()); redirectAttributes.addAttribute("size", pageRequestDTO.getSize()); redirectAttribut..