일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Web
- 웹개발
- Maven
- IntelliJ
- 스프링부트 #springboot #project #Intellij
- install
- oracle
- sqldeveloper
- 환경변수
- springboot
- HATEOAS
- RESTful
- ojdbc
- 스프링부트
- Tomcat #SpringFramework
- tcping
- restapi
- SpringInitializer
- apache
- mysql
- SpringSecurity
- 스프링시큐리티
- mssql
- Oracle11g
- postman
- undefined
- springboot #controller #jsp
- Database
- Developer
- development
- Today
- Total
목록Web (2)
여백에 도장 찍기
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] 스프링 시큐리티는 자바 애플리케이션을 위한 인증과 권한 양쪽을 제공하는데 초점이 맞춰진 프레임워크이다. 스프링 시큐리티의 진정한 힘은 고객 요구사항을 만족하기 위해 얼마나 쉽게 확장..
IntelliJ IDEA(Ultimate)에서 Spring boot Web Project를 생성해보자. 1) File > New > Project 클릭 > SDK > JDK 버전 선택 > Next 2) Type: Select 'Maven Project' or 'Gradle Project' 3) Dependency 추가 4) 그 결과, 다음과 같은 프로젝트 디렉터리를 갖게 된다. 5) src/main/java/com/example/demo/ 하위의 DemoApplication.java 코드를 실행시켜 보자. spring boot의 경우에는 WAS인 Tomcat을 내장하고 있기 때문에 port를 지정해주기만 하면 된다. 따로 지정하지 않으면 default port는 8080 이다. 6) 지정하고자 한다면 s..