일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 스프링부트 오류
- selection does not contain a main type
- video tag
- HTML
- 자바마스터
- 스프링 jsp
- 정신차리고공부하자 #개발자되기 #몰입하자
- 스프링부트 jsp 연결
- 자바 순위정렬
- 랭킹정렬
- 스프링 jsp 연결
- Failed to configure a DataSource
- 자바정렬
- 스프링부트
- MySQL 테이블명 바꾸기
- src/main/java
- 스프링부트 마이바티스
- @PathVariable
- SpringBoot Mybatis
- html input
- 자바
- sql 테이블명 바꾸기
- spring jsp
- jsp 연결
- 순위정렬
- 비디오 태그 이미지
- 비디오 태그 썸네일
- 정수 자료형
- 자바 #Java #Scanner #스캐너 #자바알파벳입력
- html video thumbnail
- Today
- Total
목록자바 JAVA/Spring | 스프링 (8)
쌤리
git 에서 클론을 했는데 아래와 같이 오류가 떴다. src/main/java 이렇게 되어있어야 하고 패키지가 쭉 있어야 하는데 java 폴더가 src 바깥에 나가 있다. 윈도우 탐색기 sts workspace java 폴더를 src > main > java 로 옮겨주자 잘된다. 끝!
@PathVariable @PathVariable is a Spring annotation which indicates that a method parameter should be bound to a URI template variable. If the method parameter is Map then the map is populated with all path variable names and values. @PathVariable 은 메소드의 파라미터가 URI 템플릿 변수에 bind 되어 있다는 것을 가리킨다. 메소드의 파리미터가 Map 형태일 경우, map 은 경로 변수 이름과 값을 다 포함하게 된다. 쉽게 얘기해서 URI 경로에 변수를 집어 넣을수 있다는 점. http://localhost:8..
메일 발송을 위해서 아래 두 가지 dependency 를 추가해야한다. org.springframework spring-context-support com.sun.mail javax.mail 1.6.2 spring-context-support spring-context-support provides support for integrating common third-party libraries into a Spring application context for caching (EhCache, Guava, JCache), mailing (JavaMail), scheduling (CommonJ, Quartz) and template engines (FreeMarker, JasperReports, Veloc..
스프링 부트에서 마이바티스를 사용하려면, spring starter project 를 생성시 아래 그림 처럼 MyBatis Framework 를 체크 하면 된다. 이 작업을 못했으면 pom.xml 에서 아래와 같이 dependency 를 추가 해준다. org.mybatis.spring.boot mybatis-spring-boot-starter 2.1.3 dao 를 interface 로 선언, @Mapper 어노테이션을 추가해준다 package com.sbs.sbl.mp.dao; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import com.sbs.sbl.mp.dto.Member; @Mapp..