일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Quartz
- 네트워크
- web.xml
- context
- plugin
- 단축키
- VirtualBox
- lsof
- Mac
- Windows
- JavaScript
- bash
- Eclipse
- Windows 10
- 줄바꿈 문자
- IntelliJ
- ssh
- Source
- profile
- find
- grep
- GIT
- vscode
- import
- resource
- tomcat
- netsh
- port
- maVen
- xargs
- Today
- Total
목록Dev/Java (163)
develog
/WEB-INF/web.xml contextConfigLocation /WEB-INF/applicationContext.xml org.springframework.web.context.ContextLoaderListener dispatcher org.springframework.web.servlet.DispatcherServlet contextConfigLocation /WEB-INF/spring-mvc.xml dispatcher *.do /WEB-INF/applicationContext.xml /WEB-INF/spring-mvc.xml /WEB-INF/mybatis-config.xml /WEB-INF/mappers/BoardDao.xml SELECT SEQ, TITLE, TO_CHAR(REG_TS, '..
Java EE Documentationhttp://www.oracle.com/technetwork/java/javaee/documentation/index.html

▶ Which Tomcat Version Do I Want http://tomcat.apache.org/whichversion.html web.xml 4.0 web.xml 3.1 web.xml 3.0 web.xml 2.5 ▶ Tomcat Versions cwiki.apache.org/confluence/display/TOMCAT/Tomcat+Versions ▶ Web Application Specifications http://wiki.apache.org/tomcat/Specifications ▶ web.xml Deployment Descriptor Elements https://docs.oracle.com/middleware/1221/wls/WBAPP/web_xml.htm#WBAPP503 ▶ web.x..
http://tomcat.apache.org/whichversion.html
public class TestService { @Autowired private TestDao testDao; @Autowired private ApplicationContext applicationContext; public void insertAll() { for (int i = 1; i
private static void setJndi() throws Exception { SimpleNamingContextBuilder builder = new SimpleNamingContextBuilder(); builder.activate(); JndiTemplate jt = new JndiTemplate(); jt.bind("jdbc/myDB", getMyDataSource());} private static DriverManagerDataSource getMyDataSource() { DriverManagerDataSource ds = new DriverManagerDataSource(); ds.setDriverClassName("oracle.jdbc.driver.OracleDriver"); d..