일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 숫자야구
- 여러인수
- 10951
- 쉬운 계단 수
- 자료구조
- decorator
- 자바
- Spring
- junit
- 백준
- pscp
- 점세개
- springboot
- Linux
- java
- 데코레이터패턴
- @ModelAttribute
- C
- @Spring
- gradle
- 전치행렬 #C
- 10844
- @NotEmpty
- NamedParameterNotBound
- 디자인패턴
- mycp
- designpattern
- BubbleSorting
- setParameter
- createQuery
- Today
- Total
목록백엔드 (14)
...

RDBMShttps://rastalion.dev/mysql-8-0-vs-postgresql-16-심층-비교-분석/https://inpa.tistory.com/entry/👩💻-multi-process-multi-threadhttps://velog.io/@pglover_12/PostgreSQL의-멀티-프로세스-구조와-Autovacuum-문제-해결https://velog.io/@semi-cloud/MySQL-MySQL-엔진-아키텍처-파헤치기MySQL vs PostgreSQLMySQL은 높은 읽기/쓰기 성능에 강점이 있기 때문에 Web Application이나 중소 규모의 DB 처리에 용이하고, PostgreSQL은 복잡한 쿼리 처리, 데이터 무결성 측면에 강점이 있기 때문에 복잡한 대규모 분석 작업과 D..
오류 문구 panic: assignment to entry in nil map goroutine 1 [running]: github.com/docker/cli/cli/config/credentials.(*fileStore).Store(0xc00035e180, {{0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}, {0x143b9b7, ...}, ...}) /go/src/github.com/docker/cli/cli/config/credentials/file_store.go:55 +0x49 github.com/docker/cli/cli/config/credentials.(*nativeStore).Store(0xc000544060, {{0x0, 0x0}, {0x0, 0x0},..
@Configuration public class GoogleCloudStorageConfig { @Bean public Storage storage() throws IOException { ClassPathResource resource = new ClassPathResource("key.json"); GoogleCredentials credentials = GoogleCredentials.fromStream(resource.getInputStream()); String projectId = "project id"; return StorageOptions.newBuilder() .setProjectId(projectId) .setCredentials(credentials) .build() .getSer..
삽질 진심 열라 했다.................... swagger3도 swagger2도 다 적용 안되고 whitelabel 떠서 미치는 줄 알았다,,,,,,,, swaggerConfig 필요 없고 gradle 기준 implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.2' spring doc 추가해주고 "http://localhost:8080/swagger-ui/index.html" 접근하면 된다ㅜㅜㅜ springfox는 아예 안되나봐..................................................................ㅜㅜㅜ
맨날 앱이랑만 작업해서 CORS 첨 봄,,,, 웹이랑 개발할 때 진짜 자주 보는 에러인가보다 ServerApplication 파일에 다음과 같은 환경설정을 해주니 해결되었다. //Cors 에러 해결 @Bean public WebMvcConfigurer corsConfigurer(){ return new WebMvcConfigurer() { @Override public void addCorsMappings(CorsRegistry registry) { registry.addMapping("/**").allowedOrigins("http://localhost:3000"); } }; }

[인스턴스 생성] 1. 이름 및 태그 (맘대로!) 2. ubuntu 22.04(프리티어 사용 가능 선택) 3. 키페어 .ppk로 생성(다중 인스턴스 사용 가능, 잃어버리지 말것!) 4. 왕중요!!! 보안 그룹 생성(인바운드, 아웃바운드 규칙 상세히 확인)-> 아웃바운드는 다 열어두는 걸로 가도됨 [Putty] 1. Host Name에 ubuntu@서버 ip(탄력적 ip) 2. SSH->Auth->private key file for authentication에 .ppk 파일 업로드 [우분투 터미널] 1. sudo git clone "git http주소" 2. sudo apt-get update 3. sudo apt install openjdk-11-jdk 4. java -version 5. cd 명령어를..
보호되어 있는 글입니다.
@NotNull @NotEmpty 차이 Integer 타입 위에는 -> @NotNull String 타입 위에는 -> @NotEmpty 따라서 @Data static class CreateStudyRequest { @NotEmpty private Long memberId; @NotEmpty private String title; //스터디제목 private String region; //지역 private String dayOfWeek; //요일 private String isOnline; //대면비대면여부 private String categories; //공부카테고리 private int personLimit; //인원제한 private String content; //소개줄글 private List..
보호되어 있는 글입니다.