(溫故知新) Hibernate 簡易練習(查找資料)
原始碼下載: https://goo.gl/xu4KXV https://goo.gl/1S0qJt
【開發環境】
Tomcat 7
MySQL
【開發工具】
Intellij IDEA 14
【使用FrameWork】
SpringMVC
jQuery
【主要畫面】
(溫故知新) Hibernate 簡易練習(查找資料)
原始碼下載: https://goo.gl/xu4KXV https://goo.gl/1S0qJt
【開發環境】
Tomcat 7
MySQL
【開發工具】
Intellij IDEA 14
【使用FrameWork】
SpringMVC
jQuery
【主要畫面】
(溫故知新) SpringMVC 簡易練習(查找資料) easy 1
原始碼下載:https://goo.gl/7fEXBV
【開發環境】
Tomcat 7
MySQL
【開發工具】
Intellij IDEA 14
在使用 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
(溫故知新) Struts2 簡易練習(查找資料)
【開發環境】
Tomcat 7
MySQL
【開發工具】
Intellij IDEA 14
【使用FrameWork】
Struts2
jQuery
整理一下關於 Spring AOP 的相關資訊以備查詢
基本觀念(Spring 含 AOP) ==> http://openhome.cc/Gossip/SpringGossip/
觀念與術語 ==> http://openhome.cc/Gossip/SpringGossip/AOPConcept.html
理解 AOP ==> http://goo.gl/5kQWDj
使用 內建的 Maven 建立一個 webapp 時,其 web.xml 裡面預設為 2.3的版本
若要使用 JSTL 及 EL 須注意到 JSP / Servlet 之間的對應關係