| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 | 31 |
- plan_table
- svn ignore
- 유용한사용법
- filed
- camel rule
- JExcel
- spring boot
- 유용한 표현
- javascripts
- 유용한 코드
- 카멜룰
- 구동하기
- TypeReference
- mput
- eclipse pliugin
- put
- 인수배열
- 로우병합
- XMLAGG
- Marshalling
- Jackson
- json
- unmashalling
- New Project
- WM_CONCAT
- 초기데이터
- arguements
- window7
- 호출
- BiffException
- Today
- Total
목록분류 전체보기 (18)
하루에 한가지
pom.xml 추가 org.springframework.boot spring-boot-starter-thymeleaf 구동을 해보면 Cannot find template location: classpath:/templates/ (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf.check-template-location=false) 위와 같은 메시지가 뜬다. 라이브러리는 잘 추가가 된 것을 확인 할 수 있고. 해당 디렉토리에 아무 html을 추가하면 해당 로그가 사라지는 것을 확인할 수 있다. contoller까지 추가해서 연결을 해보면. package com.urbug2.web.sample.cont..
sts에서는 웹 관련 파일들을 편집할 수 있는 에디터가 포함되지 않았나 보다. 추가해 보자. 이클립스에서 마켓에 들어가서 "web developer"로 검색을 하면 help > Eclipse marketplace 선택 설치. new 에서 파일 생성이 추가된 것을 확인할 수 있다.
pom.xml 에 추가 org.springframework.boot spring-boot-starter-web 재기동을 하면 Tomcat initialized with port 8080 (http) Starting service [Tomcat] Starting Servlet engine: [Apache Tomcat/10.1.18] Initializing Spring embedded WebApplicationContext Root WebApplicationContext: initialization completed in 673 ms Tomcat started on port 8080 (http) with context path '' 8080 포트로 서버가 올라 간 것을 확인할 수 있다. controller를..
github 에서 new를 통하여 프로젝트 생성 repository 가 생성되었다면 해당 주소를 바라보고 push를 시도하는 데 비밀번호에서 실패. github에서 발행한 토큰을 사용해서 접근해야 하는데. 너무 오래 되어서 아래에서 재발행 https://github.com/settings/tokens GitHub: Let’s build from here GitHub is where over 100 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and fea....
오류: 기본 클래스 com.urbug2.web.WebApplication을(를) 찾거나 로드할 수 없습니다. 원인: java.lang.ClassNotFoundException: com.urbug2.web.WebApplication spring boot로 프로젝트를 생성 후 구동 시 위와 같은 에러 메시지를 받았다. 이클립스 run configurations 에서 올바르게 해당 클래스를 바라보고 있지 않으면 해당 에러가 발생할 수 있는데. 나의 경우는 올바르게 지정되어 있는 상태였다. 원인은 잘 모르겠으나. Update Maven Project (Alt+F5) 후 정상 조치
share project 선택 repository가 없다면 create 하여 연결을 해주고 finish
git repository로 commit 되지 않는 파일들을 설정. 이클립스에서 프로젝트를 생성하고 git repository를 생성하면 자동적으로 생성된 값들이 존재한다. HELP.md target/ !.mvn/wrapper/maven-wrapper.jar !**/src/main/**/target/ !**/src/test/**/target/ ### STS ### .apt_generated .classpath .factorypath .project .settings .springBeans .sts4-cache ### IntelliJ IDEA ### .idea *.iws *.iml *.ipr ### NetBeans ### /nbproject/private/ /nbbuild/ /dist/ /nbdist/ /..
pom.xml 4.0.0 org.springframework.boot spring-boot-starter-parent 3.2.2 com.urbug2 web 0.0.1-SNAPSHOT web Demo project for Spring Boot 1.8 org.springframework.boot spring-boot-starter org.springframework.boot spring-boot-maven-plugin Application package com.urbug2.web; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringB..
- Java - Spring Boot Project - 프로젝트 생성 - git repository 생성 - git .ignore - github repository 생성 및 commit / push - web 프로젝트로 수정 / hello world - thymeleaf 를 추가 - Spring Boot - 시작 - Application / SpringApplication - web / Hello world - datasource - mybatis - application.yml / active profile - - logging - json return - controladvice / Exception 정책 - annotation - @SpringBootApplication - @SpringBootC..
자주 쓰면서도 맨날 쓸 때 마다 가물가물.. 이 참에 딱 정리하고 가자. /* array.length Array 인스턴스의 length 속성은 배열의 길이를 반환합니다. 반환값은 부호 없는 32비트 정수형이며, 배열의 최대 인덱스보다 항상 큽니다. length 속성에 값을 설정할 경우 배열의 길이를 변경합니다. */ const clothing = ['shoes', 'shirts', 'socks', 'sweaters']; console.log(clothing.length); // expected output: 4 /* Array.prototype[@@unscopables] @@unscopable 기호 속성은 ES2015 이전 ECMAScript 표준에 포함되지 않은 속성 이름을 포함합니다. 해당 속성들은 ..