일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- springboot #controller #jsp
- restapi
- mysql
- apache
- 스프링부트
- tcping
- Developer
- sqldeveloper
- Oracle11g
- oracle
- 스프링부트 #springboot #project #Intellij
- Web
- Database
- springboot
- HATEOAS
- mssql
- Maven
- RESTful
- SpringSecurity
- 스프링시큐리티
- install
- IntelliJ
- 환경변수
- undefined
- ojdbc
- postman
- 웹개발
- development
- SpringInitializer
- Tomcat #SpringFramework
- Today
- Total
여백에 도장 찍기
※ Git 설치 되어있고 GitHub 계정이 존재한다는 가정하에, GitHub에 내 Local에 존재하는 Project를 Share 해보자. 1. File > Settings > Version Control 1.1. Git 설치 디렉터리 넣어주기 1.2. GitHub 계정 넣어주기 2. VCS > Import into Version Control > Share Project on GitHub 3. 문제 없이 GitHub에 해당 프로젝트가 Share 되었다면 다음의 창을 볼 수 있다. 4. GitHub 나의 Repositories 에 가서 해당 프로젝트가 올라왔는지 확인해본다 :)
Mac 환경에서 가시성 뛰어난 shell 을 완성해보자. 설치 및 적용할 프로그램들은 다음과 같다. - iTerm2 - homebrew - zsh - oh my zsh 1. iTerm2 설치 https://www.iterm2.com/downloads.html 접속 > Download Stable Releases 2. zsh 설치 $ brew install zsh 2.1. oh my zsh 라는 zsh framework 설치 $ brew install curl $ sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
The Simple Logging Facade for Java (SLF4J) serves as a simple facade or abstraction for various logging frameworks (e.g. java.util.logging, logback, log4j) allowing the end user to plug in the desired logging framework at deployment time. "SLF4J는 다양한 로깅 프레임워크(java.util.logging, logback, log4j)를 위한 단순 fasade 또는 추상화를 제공하며 이는 최종 사용자 배포시 원하는 로깅 프레임워크로 연결할 수 있다. " 간략하게 logging framework들에 대해 살펴보면, na..
Spring boot 에 mssql db를 mybatis 이용하여 연동하는 부분을 살펴보자. 1. pom.xml 에 dependency 추가. - mybatis와 sqlserver 관련 dependency를 추가하면 된다. org.mybatis.spring.boot mybatis-spring-boot-starter 1.3.2 com.microsoft.sqlserver sqljdbc4 4.0 2. Database 관련 Config를 추가한다. @Configuration @MapperScan( value="analysis.data.system.mapper") public class DatabaseConfig { public static final String MAPPER_LOCATION = "classpat..
windows 환경에서 원격지 포트점검을 위한 tcping 을 설치해보자. 1. installation - https://www.elifulkerson.com/projects/tcping.php 접속 - tcping.exe 다운로드 2. 경로 설정 - C:\Windows\System32 밑으로 tcping.exe 를 이동시킴. 3. 테스트 - cmd 창을 열어 tcping을 가지고 sql server port가 열렸는지 test해보자. C:\Users\서주민>tcping localhost 1433 Probing ::1:1433/tcp - No response - time=2000.251ms Probing ::1:1433/tcp - No response - time=2001.675ms Probing ::1..
Spring boot에서 MSSQL 연동하는 방법에 대해 알아보자. [ Environment ] IntelliJ IDEA Microsoft SQL Server 2017 1. pom.xml 에 jdbc 및 mssql-jdbc 관련 dependency 추가한다. org.springframework.boot spring-boot-starter-jdbc com.microsoft.sqlserver mssql-jdbc 2. application.properties 에 mssql 연동 정보를 추가한다. spring.datasource.driver-class-name=com.microsoft.sqlserver.jdbc.SQLServerDriver spring.datasource.url=jdbc:sqlserver://l..
Spring security 에서 Login process 가 어떤 방식으로 이루어지는지에 대한 설정을 살펴보자. 1. 가장 먼저 Controller에서 url이 mapping된 부분을 살펴보자. import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; @Controller public class SimpleController { @GetMapping("/usr/login") public String login() { return "/login"; } } /usr/login 으로 GET방식의 요청이 들어올 경우 WEB-INF/jsp/login.jsp 를 return 한..
Spring boot 프로젝트를 생성한 뒤, JSP 를 이용해 View를 나타내고자 한다면 아래의 설정이 필요하다. 1. pom.xml 에 dependency 추가 javax.servlet jstl org.apache.tomcat.embed tomcat-embed-jasper 2. src/main 하위에 webapp/WEB-INF/jsp 디렉터리 생성 3. application.properties 파일 안에 view 디렉터리 설정 spring.mvc.view.prefix=/WEB-INF/jsp/ spring.mvc.view.suffix=.jsp 4. jsp 코드 생성하고, 관련 소스코드 동작하는지 Test url mapping을 위한 Controller 작성 import org.springframewor..