728x90

전체 글 44

Spring Boot에 React 포함하기(maven)

1. Spring starter project로 프로젝트 생성 2. cd src/main npx create-react-app test 3. cd src/main/test yarn run start 4. frontend-maven-plugin, maven-resources-plugin 플러그인 사용 pom.xml파일에 properties 를 추가 ${project.basedir}/src/main/test v16.15.0 v1.22.19 1.12.1 참고: 여기에 표시된 버전은 예시용이므로 위에 나열된 각 항목의 최신 버전을 사용하십시오. 추가된 pom.xml com.github.eirslett frontend-maven-plugin ${frontend-maven-plugin.version} ${node...

Spring boot 2022.06.10

Java Code Convention

AbstractJava Programming 시 지켜야 할 개발팀 code format / naming rule 을 정의하고 이를 공유/적용한다.What is Code Convention?Java code 작성시 지켜야 할 일종의 룰 혹은 규약이라 할 수 있다. Code Format, Class/ Method/ Variable Naming Rule 등 여러가지 내용을 담고 있고, 이를 따르도록 권장하고 있다. 'convention' 이라는 단어의 사전적 의미에서 알 수 있듯이 말그대로 '관습', '관례'인 것이다. 결국, 필연적으로 지켜야 하는 것은 아니지만 '통상 그렇게 사용되어 왔고, 룰을 지키는 것이 여러 방면에서 좋다더라'라고 봐도 무방하다는 것이다.Helpful DocumentsSummaryCo..

JAVA 2015.11.30
728x90