moepoi / Spring Batch Dir
0 beğeniler
0 çatallar
1 files
Son aktif
1 | In Spring Batch, these directories typically serve the following purposes: |
2 | |
3 | - Config: This directory contains configuration files and classes. These are usually Java classes annotated with @Configuration or XML files that define beans and job configurations. For example, you might have a BatchConfig class that sets up your job, step, reader, processor, and writer beans. |
4 | - Model: This directory holds the data model classes. These are the POJOs (Plain Old Java Objects) that represent the data being processed. For instance, if you’re processing user data, you might have a User class in this directory. |
5 | - Processor: This directory contains the classes that implement the ItemProcessor interface. These classes are responsible for processing the data read by the ItemReader before it is written by the ItemWriter. For example, you might have a UserItemProcessor class that transforms user data. |
6 | - Reader: This directory includes classes that implement the ItemReader interface. These classes are responsible for reading data from a source, such as a file, database, or API. An example would be a CsvFileItemReader that reads user data from a CSV file. |
7 | - Repo: This directory is typically used for repository classes, especially if you’re using Spring Data JPA. These classes interact with the database to perform CRUD operations. For example, you might have a UserRepository interface that extends JpaRepository. |
8 | - Writer: This directory contains classes that implement the ItemWriter interface. These classes are responsible for writing the processed data to a destination, such as a file, database, or API. An example would be a DatabaseItemWriter that writes user data to a database. |
9 | |
10 | Each of these directories helps organize your Spring Batch project, making it easier to manage and maintain. |
moepoi / Ini dia 963 alasan aku menyukai Yuki Suou 😘
0 beğeniler
0 çatallar
1 files
Son aktif
1 | 1. Senyumnya yang mempesona |
2 | |
3 | 2. Kecerdasannya yang luar biasa |
4 | |
5 | 3. Kelembutan suaranya |
6 | |
7 | 4. Cara dia melihat dunia |
8 | |
9 | 5. Dedikasinya pada pekerjaan |
moepoi / Fediverse Spam Bot Instance Blocklist
0 beğeniler
0 çatallar
1 files
Son aktif
1 | aether.run |
2 | azemet.space |
3 | besties.com |
4 | bzh.social |
5 | cryptodon.chat |
6 | cunnyborea.top |
7 | daotodon.me |
8 | dw.n1l.dev |
9 | edusocial.it |
10 | electroverse.tech |
Arsybai / serverblock
0 beğeniler
0 çatallar
1 files
Son aktif
server block for serving app using nginx (python, nodejs)
1 | server { |
2 | listen 80; |
3 | server_name <domain_name.com>; |
4 | location / { |
5 | proxy_pass http://127.0.0.1:<port>; |
6 | proxy_set_header Host $host; |
7 | proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; |
8 | } |
9 | } |
moepoi / Data Mining (UTS)
0 beğeniler
0 çatallar
2 files
Son aktif
1 | clear; clc; |
2 | |
3 | X = xlsread('DATA1B'); |
4 | X=X(1:13,1:4) |
5 | [n,p] = size(X); |
6 | |
7 | k = 3; |
8 | |
9 | idx = [3 9 12]; |
10 | % |
Newer
Older