전체 글 338

[Spring Batch] Configuring and Running a Job - (2) Java Configuration

https://docs.spring.io/spring-batch/docs/current/reference/html/job.html#javaConfig Configuring and Running a Job If a group of Jobs share similar but not identical configurations, it may help to define a “parent” Job from which the concrete Job instances can inherit properties. Similar to class inheritance in Java, a “child” Job combines its elements and attr docs.spring.io 틀린 해석이 있다면 알려주세요 🍃 J..

Web/spring 2023.03.16

[KOTLIN] NFC Reader, Writer example

먼저 NFC 기능을 사용하려면 AndroidManifest.xml 파일에 다음 권한을 추가해야 한다 nfc adapter를 가져와서 NFC가 활성화되어 있는지 확인해야 한다. 다음 코드를 사용하여 NFC adapter를 가져와서 NFC가 활성화되어 있는지 확인할 수 있다. val adapter = NfcAdapter.getDefaultAdapter(this) if (adapter == null) { // NFC가 지원되지 않는 기기입니다. return } if (!adapter.isEnabled) { // NFC가 비활성화되어 있습니다. 사용자에게 활성화를 요청합니다. val intent = Intent(Settings.ACTION_NFC_SETTINGS) startActivity(intent) } NF..

[JAVA] NFC Reader, Writer example

https://developer.android.com/guide/topics/connectivity/nfc?hl=ko NFC(근거리 무선통신) 개요 | Android 개발자 | Android Developers NFC(근거리 무선통신) 개요 컬렉션을 사용해 정리하기 내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요. NFC(근거리 무선통신)는 단거리 무선 기술로, 일반적으로 연결을 시작하려면 거리 developer.android.com AndroidManifest.xml 은 기본 NFC Reader public class MainActivity extends AppCompatActivity { private NfcAdapter nfcAdapter; private PendingIntent pendingI..

[SwiftUI] NFC Reader, Writer example

app 개발에 대한 감을 놓치고 싶지 않아서 이것저것 샘플 코드 살펴보면서 감을 유지해야겠다 언젠가는 쓸모가 있을 것이다 우선 NFC Reader를 구현하기 위해서는 Core NFC 프레임워크를 사용해야 한다. Core NFC 프레임워크를 사용하기 위해서는 Info.plist 파일에 NFC 능력을 요청하는 Key를 추가해야 한다. Key는 NFCReaderUsageDescription NFCReaderUsageDescription This app requires access to NFC capabilities to read and write NFC tags. SwiftUI를 사용하여 NFC Reader 구현 import SwiftUI import CoreNFC struct ContentView: View..

iOS 2023.03.15

[Spring Batch] Configuring and Running a Job - (1) Configuring a Job

https://docs.spring.io/spring-batch/docs/current/reference/html/job.html#configuringAJob Configuring and Running a Job If a group of Jobs share similar but not identical configurations, it may help to define a “parent” Job from which the concrete Job instances can inherit properties. Similar to class inheritance in Java, a “child” Job combines its elements and attr docs.spring.io 틀린 해석이 있다면 알려주세..

Web/spring 2023.03.14

[소프트웨어 개발] 소프트웨어 개발 방법론 종류

폭포수 모델 (Waterfall Model) 개발 생명주기를 계획, 분석, 설계, 구현, 테스트, 유지보수의 일련의 단계로 구성하여 순차적으로 진행하는 방법론 각 단계가 완료되어야 다음 단계로 진행할 수 있으며, 개발자들은 일정한 틀 안에서 개발을 진행 초기 비용을 줄일 수 있고 개발 단계마다 검증이 가능한 것이 장점 개발 초기 설계와 요구사항 분석에 대한 정확한 정보가 필요하며, 수정이 어려워지는 등의 단점이 있음 프로토타입 모델 (Prototype Model) 초기 개발 단계에서 시제품(프로토타입)을 만들고 검증하는 방법론 빠른 개발 및 수정이 가능하며, 최종 제품의 품질을 높일 수 있음 하지만 일부 개발 단계가 생략될 수 있고, 프로토타입 개발 후의 추가 개발 비용이 증가할 수 있음 애자일 개발 방..

Web/tip 2023.03.13

[Spring Batch] The Domain Language of Batch - (4) JobRepository ~ 끝

https://docs.spring.io/spring-batch/docs/current/reference/html/domain.html#jobrepository The Domain Language of Batch To any experienced batch architect, the overall concepts of batch processing used in Spring Batch should be familiar and comfortable. There are “Jobs” and “Steps” and developer-supplied processing units called ItemReader and ItemWriter. However, be docs.spring.io 틀린 해석이 있다면 알려주세..

Web/spring 2023.03.13

[Spring Batch] The Domain Language of Batch - (3) ExecutionContext

https://docs.spring.io/spring-batch/docs/current/reference/html/domain.html#executioncontext The Domain Language of Batch To any experienced batch architect, the overall concepts of batch processing used in Spring Batch should be familiar and comfortable. There are “Jobs” and “Steps” and developer-supplied processing units called ItemReader and ItemWriter. However, be docs.spring.io 틀린 해석이 있다면 알..

Web/spring 2023.03.12

[Spring Batch] The Domain Language of Batch - (2) Step

https://docs.spring.io/spring-batch/docs/current/reference/html/domain.html#step The Domain Language of Batch To any experienced batch architect, the overall concepts of batch processing used in Spring Batch should be familiar and comfortable. There are “Jobs” and “Steps” and developer-supplied processing units called ItemReader and ItemWriter. However, be docs.spring.io 틀린 해석이 있다면 알려주세요 🪴 Step ..

Web/spring 2023.03.12
728x90