Skip to content

공식 문서의 코드 조각을 읽고 정리하는 저장소

Notifications You must be signed in to change notification settings

jsjseop/daily-code-snippets

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Daily code snippets

하루 30분! 공식 문서의 코드 조각을 읽고 정리하기

  1. 공식 문서를 보는 습관
  2. 사용하는 프로그래밍 기술에 대한 이해
  3. 영어 단어 및 독해 공부

1. Java

Java Documentation

2. Spring

Spring Documentation

3. AssertJ

AssertJ Documentation

4. MySQL

MySQL Documentation

5. Lombok

Lombok Documentation

List

Participants

  1. @Sully
  2. @Hyun
  3. @Seoyeon
  4. @othertkfka

Guideline

  1. 작성하는 문서 한 개는 공식 문서의 한 페이지와 동일합니다.
    따라서, 공식 문서 한 페이지에 담긴 내용과 Markdown으로 작성한 문서의 내용은 같습니다.
    다른 페이지의 내용이라면 새 문서에 작성합니다.

  2. 영문 글과 독해는 문단으로 묶어서 반복합니다.
    영문 글은 일반 텍스트로, 독해는 인용문으로 작성합니다.

Spring makes it easy to create Java enterprise applications. It provides everything you need to embrace the Java language in an enterprise environment, with support for Groovy and Kotlin as alternative languages on the JVM, and with the flexibility to create many kinds of architectures depending on an application’s needs. As of Spring Framework 6.0, Spring requires Java 17+.

해당 문단에 대한 독해 내용

Spring supports a wide range of application scenarios. In a large enterprise, applications often exist for a long time and have to run on a JDK and application server whose upgrade cycle is beyond developer control. Others may run as a single jar with the server embedded, possibly in a cloud environment. Yet others may be standalone applications (such as batch or integration workloads) that do not need a server.

해당 문단에 대한 독해 내용

  1. 코드가 있다면 ``` ``` 안에 작성합니다.
    코드에 대한 추가 설명은 선택 사항입니다.
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        https://www.springframework.org/schema/beans/spring-beans.xsd">

    <bean id="..." class="...">  
        <!-- collaborators and configuration for this bean go here -->
    </bean>

    <bean id="..." class="...">
        <!-- collaborators and configuration for this bean go here -->
    </bean>

    <!-- more bean definitions go here -->

</beans>

About

공식 문서의 코드 조각을 읽고 정리하는 저장소

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages