가우스의 덧셈 https://blog.naver.com/kd04005/221554165732 가우스의 덧셈 (덧셈 교환법칙) 안녕하세요?키즈닥터 중계원입니다^^이번 수업에서는 '규칙을 주제로 하여가우스의 덧셈법을 토대로 ... blog.naver.com class SumGauss_01_08 { public static void main(String[] args) { Scanner stdIn = new Scanner(System.in); System.out.println("1부터 n까지의 합을 구합니다."); System.out.print("n의 값:"); int n = stdIn.nextInt(); int sum = (n + 1) * (n / 2) + (n % 2 == 1 ? (n + 1) / 2 : 0); // 합 .. 면접준비 5년 전
[Spring Boot]스프링부트 사용하기 - Structuring Your Code / Configuration Classes(a.k.a Bean 설정) / Auto-configuration Structuring Your Code 특정한 코드 구조를 강요하지 않는다. !권장사항! 1. Default package 사용을 권장하지 않는다. Default package 에서 클래스 파일 생성 후 @ConfigurationPropertiesScan, @ComponentScan, @EntityScan, @SpringBootApplication 어노테이션을 사용할 경우 Default package 안에 있는 모든 class들에 대해 scan을 수행할 것이다. 따라서 어플리케이션 성능에 영향을 미칠 수 있다. 2. Locating the Main Application Class Main 메소드를 갖고 있는 클래스의 위치는 root 패키지 및에 위치 할 것을 추천한다. Main 메소드를 갖고 있는 클래스.. Spring Boot 5년 전
[Java]Default package 란? Default package 란? 패키지 생성 없이 바로 java 디렉토리 하위에 class 파일 생성하는 것을 'defualt package를 사용' 이라고 말한다. 기타 5년 전
[Spring Boot]스프링부트 사용하기-Build Systems(Maven) * dependency management 를 지원하는 build system을 사용할 것을 권유함. * 특히, gradle 이나 maven (그외의 것들은 특별히 잘 지원되지 않음) dependency management Spring Boot가 관리하는 의존성 목록을 제시한다. 그 목록들은 따로 버전 정보를 명시해줄 필요가 없다. Spring Boot를 업그레이드하면 관련 의존성들은 자동으로 업그레이드 됨. 원한다면 Spring Boot에서 관리하는 의존성들의 버전 정보를 overide 해서 쓸 수 있다. ! 단, Spring Framework의 version을 함부로 바꾸지 않도록 주의 하세요! Maven 으로 시작하기 spring-boot-starter-parent 를 상속 받으면 기본으로 되어 있.. Spring Boot 5년 전
버전 차이점 - Snapshot/M(Milstone)/RC(Release candidate)/ga Snapshot daily build 버전. 실험 중인 버전. 새로 개발 중인 기능이 있을 수 있다(인터페이스가 변경 될 수 있음) M(Milstone) Snapshot 보다 정리가 잘 되어 있는 버전. 실험 중인 버전. 새로 개발 중인 기능이 있을 수 있다(인터페이스가 변경 될 수 있음) RC(Release candidate) Milstone 본다 더 정리가 잘 되어저 배포된 버전. 왠만하면 개발된 기능들은 그대로 배포된다. ga 최종 release 버전. 기타 5년 전
[Spring Boot] 시작하기 - Spring Boot 란/시스템 요구사항/Spring Boot 설치/jar 파일로 얻기 Spring Boot 란? Spring Boot는 Spring의 환경설정을 쉽게할 수 있도록 도와주기 때문에 독립적이고, 상용화 수준의 스프링 기반의 어플리케이션을 만드는것을 쉽게 만들어준다. Spring Boot를 이용해 실행가능한 .jar 파일과 .war 파일을 만들 수 있다. 시스템 요구사항(Spring Boot 2.3.0.RELEASE 기준) Java8~Java14 Spring Framework 5.2.6.RELEASE 이상 Maven 3.3+ Tomcat 9.0 (Servlet Ver. 4.0) Spring Boot 설치 및 샘플 어플리케이션 만들기(Maven Installation) 1. Java 프로젝트 만들기 2. Maven pom.xml 설정하기 Spring Boot의 dependency.. Spring Boot 5년 전
[Spring Boot / Maven]MavenError- No plugin found for prefix 'spring-boot' in the current project and in the plugin groups 오류 내용 스프링 부트를 이용해 테스트 프로젝트 생성후 cmd에서 run 하니 에러발생. 해결방법 이건... 참... 해결방법이라 하기도 뭐하다..ㅋㅋㅋㅋㅋㅋㅋ pom.xml은 프로젝트 디렉토리 안에 존재하기 때문에 maven 프로젝트를 빌드하기 위해서는 해당 디렉토리로 이동해서 명령어를 작성해주어야한다. ㅋㅋㅋㅋㅋㅋ [출처] https://taogenjia.com/2019/07/20/mavenerror-no-plugin-found-for-prefix-spring-boot-in-the-current-project-and-in-the-plugin-groups/ 오류해결 5년 전
[Spring Boot]No plugin found for prefix 'spring-boot' in the current project 오류 내용 [ERROR] No plugin found for prefix 'spring-boot' in the current project and in the plugin groups [org.apache.maven.plugins, org.codehaus.mojo] available from the repositories [local (C:\Users\suntea\.m2\repository), central (https://repo.maven.apache.org/maven2)] -> [Help 1] CMD에서 mvn spring-boot:run 구문으로 어플리케이션을 실행하려고 하니 위의 오류가 나옴. 오류해결 https://stackoverflow.com/questions/30855864/maven-n.. 오류해결 5년 전
[Spring Boot]failure to transfer org.springframework ... 오류내용 org.eclipse.aether.transfer.ArtifactTransferException: Failure to transfer org.springframework ... Spring Boot 프로젝트 생성시 Maven 에서 오류가 발생했다. 해결방법 https://gist.github.com/Jack0804/dbcf5bed8527f16920e1b8e1ea8a2a0c SpringBoot 프로젝트 생성 시, Missing artifact org.springframework / failure to transfer org.springframework 오류 해�� SpringBoot 프로젝트 생성 시, Missing artifact org.springframework / failure to tra.. 오류해결 5년 전
[Spring Boot]Web server failed to start. Port 8080 was already in use. 오류 내용 *************************** APPLICATION FAILED TO START *************************** Description: Web server failed to start. Port 8080 was already in use. Action: Identify and stop the process that's listening on port 8080 or configure this application to listen on another port. 해결방법 포트를 변경한다. 변경방법은 아래의 방법들 중 한가지를 선택해서 수행하면 된다. 1. 어플리케이션의 속성을 추가한다. server.port=8081 *출처 : https://www.javatp.. 오류해결 5년 전