2017/05/17

自転車タイヤのサイズ表記の見方

 700 × 25 C 700 → タイヤの外径を、ミリメートルで示しています。 25 → タイヤの幅(太さ)を、ミリメートルで示しています。 C → リム(鉄部分?)の大きさを表す記号です...

2017/05/07

exec-maven-plugin java angular

pomファイルに下記を追加: <build>         <plugins>             <plugin>                 <groupId>org.codehaus.mojo</groupId>                 <artifactId>exec-maven-plugin</artifactId>                 <configuration>            ...

2017/05/06

spring-boot:run does not stop the tomcat

eclipseでmvn spring-boot:run を停止して、tomcatがまだ生きる the port has been usedになる。 ↓ The best way to "fix" that is to not do it. Why would you need to run a maven goal from eclipse when you can just right click in the main class and Run As->Java Application? boot dashboardも回避できる。 => boot dashboardの仕組みは?単純に実行したことを思えたかな?    あとで調べる...

spring-boot hot swapping にする

・pomフィアルに下記を追記する     <dependencies>         <dependency>             <groupId>org.springframework.boot</groupId>             <artifactId>spring-boot-devtools</artifactId>             <optional>true</optional>         </dependency>     </dependencies>    ・IDEの自動ビルドを有効にする 他に、devtoolsはcacheを無効にしている。 properties.put("spring.thymeleaf.cache",...