Tagging
Try bookmarklet. Easy tagging.
Do you want to delete?
Do you want to modify?
  • LINKTAG
  • New
  • Tag
  • Comment
  • Tag, it
Sign in

it

it blog naming

[SpringBoot] Naming methods in each layer

There's no strict stnadard naming convention in SpringBoot, Howevere there's some best practice. Controller Layer The methods in the controller should be named based on the HTTP method. getUser postUser deleteOrder Service Layer Methods in service layer should be descriptive and prefixed with a verb createUser() updateUser() deleteUser() Persistence Layer Methods in persistence layer named data ..
wono | discuss |
it blog naming

[springboot] Controller, Service, Repository 메서드명 규칙

Contoller컨트롤러의 메소드명은 해당 메소드가 수행하는 작업을 설명하는 동사로 시작합니다.주로 HTTP 요청 메소드(GET, POST, PUT, DELETE 등)와 관련된 동사를 사용합니다.예를 들어, 데이터를 조회하는 메소드의 경우 get으로 시작하고, 데이터를 생성하는 메소드의 경우 create로 시작합니다.예시: getUserById, createUser, updateUser, deleteUser 등Service의 메서드 서비스의 메소드명은 해당 메소드가 제공하는 기능이나 업무를 명확하게 설명하는 동사로 시작합니다.비즈니스 로직이나 특정 업무 처리를 담당하는 메소드의 이름을 지을 때 주로 사용됩니다.예를 들어, 주문을 처리하는 메소드의 경우 processOrder와 같이 설명적인 동사를 사용합..
wono | discuss |
it dev nodejs typscript

node.js로 서버 개발 환경 설정 (with TypeScript) – GIS Developer

wono | discuss |
it dev nextjs

Standalone Next.js. When serverless is not an option

Ready to deploy your Next.js app, but unsure if serverless is the way to go? Let's explore both serverless and serverful approaches to help you choose the right path for your project.
wono | discuss |
it dev nextjs nestjs

NextJS 와 NestJS를 같이 써보자 (1)

포스트하기 앞서 짧게 두 프레임워크를 연동하려 하는 이유를 말하자면, 우선 개인 포트폴리오 웹 페이지를 만들고 싶었다. 그래서 무료 클라우드 서버를 찾는 와중 국내 서비스인 클라우드타입 을 알게 되었다. 다른 해외 서비스는 해외에 서버가 있기 때문에 느린데 이 녀석은
wono | discuss |
it dev nextjs

Is there a way to use api functions that are "not serveless" ?

wono | discuss |
it dev nextjs serverless

Next.js의 API Routes 코드 모듈화에 대해서

API Routes를 사용하면 코드가 매우 지저분해진다. API Routes를 사용하면서 어떻게 하면 코드를 보기 좋은 형태로 남길 수 있을지 고민한 흔적.
wono | discuss |
it dev nextjs

How can I separate data layer from Next.js API routes?

wono | discuss |
it qa arc

"Service" or "Repository" -- Naming is hard! · Issue #14 · brianegan/new_flutter_template

Many apps talk to external data sources via some kind of "Data Layer." Some folks call these Data Layer objects "Repositories," while others call these same type of objects "Services." Which makes the most sense or feels the most univers...
wono | discuss |
it dev javascript module

📦 JavaScript Module System

자바스크립트의 모듈 시스템 (ESM, CommonJS, AMD)
wono | discuss |
it dev nextjs inject

OOP and Dependency Injection in NextJs

Inversion of Control with InversifyJs in NextJs
wono | discuss |
it dev express inject

Express를 NestJS처럼 사용하기 (feat. InversifyJS)

MVC 패턴이란?
wono | discuss |
it dev express inject

The Controller-Service-Repository Pattern: A Comprehensive Guide

Introduction In modern software development, creating scalable, maintainable, and testable applications is paramount. One architectural pattern that helps achieve these goals is the Controller-Service-Repository (CSR) pattern.
wono | discuss |
it dev nextjs cors

Using CORS in Next.js to handle cross-origin requests - LogRocket Blog

There are several ways to configure CORS in Next.js. Let's look at how to use the most critical headers to make your site more secure.
wono | discuss |
it dev nextjs

Next.js 개발 요청사항

1. Routing 정책 - App Router를 쓰는지 그렇다면 use client를 써야하는 상황 - App Router vs. Page Router → App Router 방식을 사용합니다. 공시문서: https://nextjs.org/docs#app-router-vs-pages-router App Router에서는 streaming과 같은 최신 React 기능을 사용할 수 있는 이점이 있습니다. Next.js 13.3까지 Page Router 방식을 사용했고 App Router는 베타 단계였고, Next.js 13.4부터 App Router가 정식 버전으로 채택되었습니다. App Router의 가장 큰 변화는 RSC(React Server Component)를 default로 쓰고 있다는 점입니다..
wono | discuss |
it dev nextjs request

Access Request Object in New App Directory Page Route · vercel/next.js · Discussion #42732

Access Request Object in New App Directory Page Route
wono | discuss |
it dev nextjs

how to get the client Ip address in app router? · vercel/next.js · Discussion #55037

how to get the client Ip address in app router?
wono | discuss |
it dev nextjs zustand

Setup with Next.js - Zustand

wono | discuss |
it dev nextjs

Next.js 14 강좌 1편. 라우팅의 모든 것

Next.js 14 강좌 1편. 라우팅의 모든 것
wono | discuss |
it dev nestjs todo

NestJS 로 Todo App 만들기

입사지원 과제로 제출한 Todo 프로젝트입니다. 풀스택으로 일주일간 구현했습니다.
wono | discuss |
Next
© 2026. LINKTAG.ORG. Help Feedback Privacy Terms