출처 : https://velog.io/@kimhyesu-_-/JavaScript-%EB%B9%84%EA%B5%AC%EC%A1%B0%ED%99%94-%ED%95%A0%EB%8B%B9%EA%B5%AC%EC%A1%B0%EB%B6%84%ED%95%B4%ED%95%A0%EB%8B%B9 let fruit = ['Apple','Banana', 'Peach'];let Apple = fruit[0];let Banana = fruit[1];let Peach = fruit[2]; ==> 대신 아래와 같이 한줄로 변수를 할당할 수 있다. let fruits = ['apple','banana','peach'];let [apple, banana, peach] = fruits; console.log(apple);console...
// QueryController.java@AuthMethod(hasAuth = CommonUtil.UserAuth.ALL)@RequestMapping(value = "/executeQuery")@Transactional(readOnly = true, timeout = 30)public ModelAndView executeQuery(@RequestBody Query query) throws GlobalException {int query_timeout = 10;List timeoutCodeValue = commonService.selectCodeList("ddlb.selectCodeList", new TypeCode("query_timeout"));if (timeoutCodeValue != null &&..
@Data@Configuration@ConfigurationProperties(prefix="smtp")public class SMTPConfig {private String host;private String port;private Boolean auth;private Boolean startTLSEnable;private String user;private String password;/**--------------------------------------------------------------------* ■서비스 등록--------------------------------------------------------------------**/@Beanpublic JavaMailSender g..
@Componentpublic class ServiceInit implements InitializingBean {@Autowired@Qualifier("mainDB")private GenericDAO dao;@AutowiredProperty property;@Overridepublic void afterPropertiesSet() throws Exception {HashMap map = new HashMap();map.put("location", Property.location);map.put("bosTypeCode", Property.bosTypeCode);map.put("serverDomain", Property.serverDomain);System.out.println("++++++++++++++..
@Configurationpublic class ServiceConfig implements WebMvcConfigurer {@Value("${static.url}")private String staticUrl;@Value("${static.resources.location}")private String staticResourcesLocation;@Beanpublic SpringResourceTemplateResolver templateResolver() {SpringResourceTemplateResolver templateResolver = new SpringResourceTemplateResolver();templateResolver.setPrefix("classpath:templates/");te..
/* AOP 설정(I/O 로깅) */@Aspect@Componentpublic class ServiceAOP { private static final Logger logger = LoggerFactory.getLogger("AOP"); @Pointcut("within(com.shinhanpg.admin.backoffice..controller.*)") // 서비스까지 AOP 설정하는 경우 // @Pointcut("within(com.shinhanpg.admin.backoffice..*)") public void controllerPointcut() { } @Pointcut("within(com.shinhanpg.admin.backoffice..service.*) && !(@annotation(com.sh..
@Configurationpublic class RedisConfig {@Value("${redis.cluster.nodes}")List redisNodeList;@Beanpublic RedisTemplate redisTemplate(RedisConnectionFactory connectionFactory) {RedisTemplate redisTemplate = new RedisTemplate();redisTemplate.setKeySerializer(new StringRedisSerializer());redisTemplate.setValueSerializer(new GenericJackson2JsonRedisSerializer());redisTemplate.setConnectionFactory(conn..
- Total
- Today
- Yesterday
- 여러 컬럼 update
- element위치
- object key
- Keycode
- DatePicker
- setter
- getter
- lombok
- JQuery
- caniuse
- oracle
- 전후방탐색
- devtools
- $.each
- 프로젝트명변경
- Javascript
- springboot
- ul li로 테이블
- spring
- draw.io
- 정규식
- PostgreSQL
- excel
- $.extend
- CSS
- border-collapse
- @ExceptionHandler
- QueryDSL
- 진열사랑
- sumifs
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |