본문 바로가기

전체 글

(47)
Oracle DB 설정 Gradle : // DB Connection (HikariCP - Connection Pool 포함) implementation 'org.springframework.boot:spring-boot-starter-jdbc' // Oracle JDBC Driver runtimeOnly 'com.oracle.ojdbc:ojdbc8' 설정파일에 설정 추가 (src>resources>application.properties) #Oracle spring.datasource.url=jdbc:oracle:thin:@172.16.0.00:1521:xe spring.datasource.username=id spring.datasource.password=pass spring.datasource.driver.class=o..
Using JT400 in Python https://javadoc.midrange.com/jtopen/index.html?help-doc.html Generated Documentation (Untitled) javadoc.midrange.com 출처 : https://www.cnblogs.com/sui84/p/8448462.html #coding=utf-8 import jpype import os class JT400Helper(object): def __init__(self, server,username,pwd): jvmpath=r"C:\Program Files\Java\jre1.8.0_60\bin\server\jvm.dll" jarpath=r'd:\temp\jt400.jar' jvmArg = "-Djava.class.path=%s" %..
JDBC Connection in Java 준비물 : JDBC Driver 메뉴얼 : IBM Toolbox for Java
[Refer] SpringWebMVC - Request Mapping Spring Web MVC - Request Mapping
[Refer] SpringWebMVC - Handler Methods Spring Web MVC - Handler Methods Web on Servlet Stack This part of the reference documentation covers support for Servlet stack, WebSocket messaging that includes raw WebSocket interactions, WebSocket emulation through SockJS, and publish-subscribe messaging through STOMP as a sub-protocol over WebSocket. 4.1 docs.spring.io Arguments getEvent(@PathVariable Integer id) : URI경로에서 가져옴 @GetMapping("..
Lombok 관련 설정 Plugin 설치 컴파일 환경 설정
[JUnit5] UnitTesting FrameWork 참고 https://junit.org/junit5/docs/current/user-guide/#overview-what-is-junit-5 JUnit 5 User Guide Although the JUnit Jupiter programming model and extension model will not support JUnit 4 features such as Rules and Runners natively, it is not expected that source code maintainers will need to update all of their existing tests, test extensions, and cus junit.org XPath로 HTML 본문 테스트시 https://www.w3..