일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Eclipse
- 네트워크
- Quartz
- 줄바꿈 문자
- lsof
- 단축키
- port
- vscode
- xargs
- maVen
- web.xml
- tomcat
- Windows 10
- profile
- Windows
- plugin
- VirtualBox
- Source
- Mac
- ssh
- bash
- netsh
- JavaScript
- resource
- find
- context
- grep
- import
- IntelliJ
- GIT
- Today
- Total
목록Dev/Spring (18)
develog
spring cron expression test import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; import org.springframework.scheduling.support.CronSequenceGenerator; public class TestCronExpression { public static void main(String[] args) { Calendar today = Calendar.getInstance(); today.set(2019, 2-1, 21); testCronExpression(today, "0 30 12 27-31,1-2 * ?"); } public static void t..
spring-config.xml MyService.java package com.my.service; @Service public class MyService { @Autowired private MyDao myDao; } MyDao.java package com.my.dao; @Repository public class MyDao { }
spring-config.xml MyService.java package com.my.service; public class MyService { @Autowired private MyDao myDao; } MyDao.java package com.my.dao; public class MyDao { }
spring-config.xml MyService.java package com.my.service; public class MyService { private MyDao myDao; public void setMyDao(MyDao myDao) { this.myDao = myDao; } public MyDao getMyDao() { return myDao; } } MyDao.java package com.my.dao; public class MyDao { }
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:util="http://www.springframework.org/schema/util" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation=" http://www.springframework.org/schema/beans ..
pom.xmlorg.springframeworkspring-core3.1.1.RELEASEorg.springframeworkspring-context3.1.1.RELEASEorg.springframeworkspring-web3.1.1.RELEASEorg.springframeworkspring-aop3.1.1.RELEASE org.aspectjaspectjweaver1.6.8org.aspectjaspectjrt1.6.8 cglibcglib2.2 spring-config.xml LoggingAspect.javapackage com.my; import org.aspectj.lang.JoinPoint;import org.aspectj.lang.Signature; public class LoggingAspect ..