2015年5月21日 星期四

[問題]如何移除停用Chrome新版的書籤管理

image

也許有些人像筆者一樣覺得Chrome新版的書籤管理不夠直覺好用,還是想換回舊版的

方式很簡單,只要將其停用就好。

2015年5月13日 星期三

[Java] 如何將陣列 Array 輸入至 Stored Procedure 當中

 

有一個 Stored Procedure 為 SP_COUNT_WHICH 其輸入參數有字串及陣列,下面的範例就是可以讓使用者將陣列資料利用 Java Code 傳入到該 Stored Procedure。

2015年5月5日 星期二

[ERROR] intellij idea Error:java: javacTask: source release 1.6 requires target release 1.6

在使用 IDEA 的過程中,可能會出現諸如:

Error:java: javacTask: source release 1.6 requires target release 1.6

Error:java: javacTask: source release 1.X requires target release 1.X

等錯誤,表示您目標輸出的版本不符合,若您使用的是 Maven 來管理方案,可以使用指定 compiler 的方式來解決

如在 pom.xml 中加上:

<build>
<finalName>TestSpringMVC_013</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>

</build>
其他參考解決方式:
IntelliJ IDEA Tip: source release 1.6 requires target release 1.6
IDEA: javac: source release 1.7 requires target release 1.7