'2018/12/27'에 해당되는 글 5건

  1. 2018.12.27 맨박스가 없다고? 2
  2. 2018.12.27 spring classname.class
  3. 2018.12.27 네이버 지도 API 마커 애니메이션
  4. 2018.12.27 gradle + STS + openJDK 설치 -_-
  5. 2018.12.27 gradle to buildship

지인이 이수역 사건으로 이야기를 걸어와서 멀리머리 가다가 나온게 맨박스

도대체 어떻게 해석을 해야 저런 소리를 하는지 모르겠지만


이전글에도 적었었지만

한국 남성에게 있어 맨박스는 '당연한 것' 모두가 아닐까?

남자니까 oo 해야 한다로 정의 되는 맨박스가 존재하지 않는다니

이렇게 문해력과 논리력이 떨어지니 32만명이나 저런 낚시질에 걸려서 파닥파닥 하고도

탈페미(?)할 생각을 못하겠지?


이수역 폭행 사건 관련자 거짓말로 진술..경찰에 사과

[링크 : https://news.v.daum.net/v/20181227173300943]


80-90년대 한남들한테 더이상 맨박스는 존재하지 않는다 2018-04-13 18:31:47

[링크 : https://womad.life/220182]


그나저나 요 근래 따끈따끈한 개소리 글은 안보이는데 어디서 주워들어 온거야?

Posted by 구차니
Programming/Java(Spring)2018. 12. 27. 19:29

spring 코드 보다 보니

classname.class 라는 희한한 문법이 보여서 검색



 @Configuration

 @EnableAutoConfiguration

 public class MyApplication  {


   // ... Bean definitions


   public static void main(String[] args) throws Exception {

     SpringApplication.run(MyApplication.class, args);

   } 

}

[링크 : https://docs.spring.io/spring-boot/docs/current/api/org/springframework/boot/SpringApplication.html]


public final Class<?> getClass()

Returns the runtime class of this Object. The returned Class object is the object that is locked by static synchronized methods of the represented class. 

[링크 : https://docs.oracle.com/javase/6/docs/api/java/lang/Object.html#getClass%28%29]

    [링크 : https://stackoverflow.com/questions/10477375/what-does-classname-class-return]


문득 헷갈려서 찾게 되네.

클래스는 설계도 이고 오브젝트는 class의 instance이다 라고 정의하면 되려나?

[링크 : http://itsuit.tistory.com/45]

'Programming > Java(Spring)' 카테고리의 다른 글

sts gradule spring boot howto  (0) 2018.12.28
STS gradle 버전 문제가.. 혹시..  (0) 2018.12.28
gradle + STS + openJDK 설치 -_-  (0) 2018.12.27
gradle to buildship  (0) 2018.12.27
sts(Spring Tool Suite) version  (2) 2018.12.26
Posted by 구차니

setAnimation에 인자를 주지 않으면 애니메이션이 사라진다.

DROP은 1회에 한해서 한번 뚕~ 하고 끝

BOUNCE는 계속 뛰고 있으니 얘가 무난할 듯?


naver.maps.Event.addListener(urlMarker, 'click', function() {

    if (urlMarker.getAnimation() !== null) {

        urlMarker.setAnimation(null);

    } else {

        urlMarker.setAnimation(naver.maps.Animation.BOUNCE);

    }

}); 

[링크 : https://navermaps.github.io/maps.js/docs/tutorial-marker-animation.example.html]

Posted by 구차니
Programming/Java(Spring)2018. 12. 27. 10:20

먼가 끄적끄적 하는데 안되서 고민 때리다가...


그래들이 설치가 완전히 안되었어용~ 하길래 찾다보니.. 헉?!

gradle 플러그인 깔면 당연히(?) 그래들이 딸려 오는거 아니었던거냐?!?!?!


 I found out that when I ran "choco install gradle", it didn't install the most recent version of Gradle 

[링크 : https://stackoverflow.com/questions/42324135/gradle-installation-not-configured-correctly]


Chocolatey is "the package manager for Windows".

❯ choco install gradle 

[링크 : https://docs.gradle.org/current/userguide/installation.html]

[링크 : https://gradle.org/releases/]

'Programming > Java(Spring)' 카테고리의 다른 글

STS gradle 버전 문제가.. 혹시..  (0) 2018.12.28
spring classname.class  (0) 2018.12.27
gradle to buildship  (0) 2018.12.27
sts(Spring Tool Suite) version  (2) 2018.12.26
gradle openjdk11  (0) 2018.12.26
Posted by 구차니
Programming/Java(Spring)2018. 12. 27. 10:09

실행하는데 귀찮아서 넘겼던 걸 다시 보니..

어라 빌드쉽? 그래들을 버리고 가야하는건가?


[링크 : https://github.com/eclipse/buildship/wiki/Migration-guide-from-STS-Gradle-to-Buildship]

'Programming > Java(Spring)' 카테고리의 다른 글

spring classname.class  (0) 2018.12.27
gradle + STS + openJDK 설치 -_-  (0) 2018.12.27
sts(Spring Tool Suite) version  (2) 2018.12.26
gradle openjdk11  (0) 2018.12.26
spring과 gradle  (0) 2018.12.26
Posted by 구차니