일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- Open Source
- Core Java
- ubuntu
- JavaScript
- SpringBoot
- git
- jpa
- STS
- Python
- spring
- MySQL
- 문서
- 오픈소스
- myBatis
- IntelliJ
- Exception
- MSSQL
- Source
- Eclipse
- 설정
- error
- PostgreSQL
- maven
- Thymeleaf
- Tomcat
- Spring Boot
- oracle
- AJAX
- Docker
- JDBC
- Today
- Total
목록Spring Boot (56)
헤르메스 LIFE

개발환경 Spring Boot 2.2.4 JDK 1.8.0_202 REST Postman : REST Client 목표 1. Spring Boot REST 환경 import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import javax.annotation.PostConstruct; import java.util.TimeZone; @SpringBootApplication public class Application { @PostConstruct void init() { TimeZone.setDefault(TimeZone.getTimeZone("U..
출처 : dzone.com/articles/spring-vs-spring-boot sas-study.tistory.com/274 * spring-boot-starter-web-services : SOAP 웹 서비스 * spring-boot-starter-web : Web과 RESTful 애플리케이션 * spring-boot-starter-test : Unit testing, Integration Testing * spring-boot-starter-jdbc : 기본적인 JDBC * spring-boot-starter-hateoas : HATEOAS 기능을 서비스에 추가 * spring-boot-starter-security : 스프링 시큐리티를 이용한 인증과 권한 * spring-boot-starter-..

JDK 1.8.x IntelliJ IDEA 2020.3 1. New Project 2. Maven 선택 3. 프로젝트 경로 설정 4. Maven 설정파일 기본 ( pom.xml ) 5. Maven 설정파일 수정 - 2.2.4.RELEASE 빨강색 오류남. ( pom.xml >> maven >> Reload Project 하면 사라짐. ) 4.0.0 com.rest SimpleRestAPI 1.0-SNAPSHOT 8 8 org.springframework.boot spring-boot-starter-parent 2.2.4.RELEASE org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-se..
JDK 1.8.x IntelliJ IDEA 2020.3 . ____ _ __ _ _ /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ :: Spring Boot :: (v2.2.5.RELEASE) 2020-12-26 19:35:37.382 INFO 12104 --- [ main] com.sample.Application : Starting Application on DESKTOP-HMJ6ST0 with..
JDK 1.8.x IntelliJ IntelliJ IDEA 2020.3 java: cannot find symbol symbol: class SpringBootApplication package com.sample; @SpringBootApplication public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } } 참담하고, 어이 없지만.. classpath 를 설정하지 못해서.. ㅡㅡㅋ Alt + Shift + Enter Alt + Enter package com.sample; import org.springframework.boot.SpringAp..
출처 : https://groups.google.com/forum/#!topic/ksug/QNiYQbJI-2I 안녕하십니까, KSUG 일꾼단 김지헌입니다.지난 해에 발표한 영상이 편집되어 유투브에 기재되었습니다. 이에 내용을 정리해서 공유합니다.즐거운 설명절 무사히~ 즐겁게~ 보내시길 바랍니다. ^^ YouTube: springcampkr http://www.youtube.com/user/springcampkr@ Track ADSL 로 만나는 Groovy (장시영)발표자료: http://www.slideshare.net/seeyoung/dsl-groovy예제코드: https://github.com/seeyoung/GroovyDSL발표영상: http://www.youtube.com/watch?v=VQSJ2..