회원 서비스 package kr.example.spring.service; import kr.example.spring.domain.Member; import kr.example.spring.repository.MemberRepository; import java.util.List; import java.util.Optional; public class MemberService { private final MemberRepository memberRepository = new MemoryMemberRepository(); // 회원 가입 public Long join(Member member) { // 같은 이름이 있는 중복 회원 X validateDuplicateMember(member); // 중복 ..
transaction 처리 auto commit을 해제 -> 트랜잭션의 시작 state의 기본값을 false로 지정, try 문이 정상 실행 되면 state값을 true로 변경 state에 따라서 commit 할지 rollback할지 결정 package transaction; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.SQLException; public class TransactionBasicTest { public static void main(String[] args) { String url =..
관점지향프로그래밍 핵심기능과 공통기능을 각각의 코드로 구현한 후 필요한 곳에서 적절하게 조합해서 완성된 코드로 실행되도록 하는 프로그래밍 기법 [용어] 1. core concern (핵심기능) - 비지니스로직(주업무) 2. cross-cutting concern(공통기능) - 부가기능(보조업무) => 로깅, 트랜잭션처리, 자원처리, 보안처리 ... 3. code core concern이 구현된 객체 4. advice cross-cutting concern이 구현된 객체 5. joinPoint code와 advice를 연결할 수 있도록 도와주는 설정정보 즉, advice를 적용할 지점에 대한 정보(메소드 호출, 필드값을 변경, ..) 6. Point-cut joinPoint의 부분집합으로 실제 advice..
ajax 사용하기 json validator : JSON 데이터인지 유효성 검사 https://jsonlint.com/ The JSON Validator JSONLint is the free online validator and reformatter tool for JSON, a lightweight data-interchange format. jsonlint.com json변환 라이브러리(jackson) com.fasterxml.jackson.core jackson-core 2.4.6 com.fasterxml.jackson.core jackson-databind 2.4.6 ajax로 요청할 때 실행할 컨트롤러 메소드 - @ResponseBody 어노테이션으로 ajax요청을 받음 - json 값 리턴 @..
Spring mybatis 사용시 insert, update 할 때 null값이 들어가면 부적합한 열 유형 오류가 발생한다. Request processing failed; nested exception is org.springframework.jdbc.UncategorizedSQLException: Error setting null for parameter #1 with JdbcType OTHER . Try setting a different JdbcType for this parameter or a different jdbcTypeForNull configuration property. Cause: java.sql.SQLException: 부적합한 열 유형: 1111 ins..
STS 설치 https://spring.io/ 3 버전은 아래 쪽에서 받을 수 있음 https://github.com/spring-projects/toolsuite-distribution/wiki/Spring-Tool-Suite-3 버전 선택 하여 다운로드 관리자 권한으로 실행 Tomcat server 등록 tc server는 지움 톰캣 서버 등록 Maven Project 생성 패키지명 maven - spring 프로젝트 구조 firstPro : context src/main/java : controller(java) Maven Dependencies : 라이브러리 파일 라이브러리 저장 폴더 : C:\Users\유저명\\.m2\repository src : view(jsp) pom.xml : 라이브러리 ..
- Total
- Today
- Yesterday
- Variable allocation
- gradle
- 빅데이터
- HDFS
- JSON
- Disk Scheduling
- File Protection
- 빅데이터 플랫폼
- I/O Mechanisms
- Allocation methods
- Flume
- SQL
- RAID Architecture
- I/O Services of OS
- hadoop
- aop
- Disk System
- vmware
- 하둡
- springboot
- linux
- oracle
- Spring
- Java
- Replacement Strategies
- Free space management
- maven
- SPARK
- jdbc
- mapreduce
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |