일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- restapi
- mssql
- 환경변수
- Oracle11g
- ojdbc
- 웹개발
- Web
- Maven
- sqldeveloper
- postman
- RESTful
- IntelliJ
- install
- undefined
- Database
- 스프링부트
- 스프링부트 #springboot #project #Intellij
- apache
- 스프링시큐리티
- SpringInitializer
- mysql
- oracle
- SpringSecurity
- Tomcat #SpringFramework
- springboot #controller #jsp
- Developer
- HATEOAS
- development
- tcping
- springboot
- Today
- Total
목록분류 전체보기 (49)
여백에 도장 찍기
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..
Spring Security is a framework that focuses on providing both authentication and authorization to Java applications. Like all Spring projects. the real power of Spring Security is found in how easily it can be extended to meet custom requirements [ref: https://spring.io/projects/spring-security] 스프링 시큐리티는 자바 애플리케이션을 위한 인증과 권한 양쪽을 제공하는데 초점이 맞춰진 프레임워크이다. 스프링 시큐리티의 진정한 힘은 고객 요구사항을 만족하기 위해 얼마나 쉽게 확장..