素材里面打開全是亂碼,為什么不統一搞成utf-8,非要弄各種奇怪的編碼導致我一個一個 的轉換各種編碼,才復制粘貼到我的文件中
2017-11-13
<prop key="hibernate.dialect">org.hibernate.dialect.MySQL5InnoDBDialect</prop>
數據庫方言 需要 設置 MySQL5InnoDBDialect 。否則建表語句 是 type=innode。導致無法建表,,而且涉及到外鍵,所以需要指定創建InnoDB引擎的表,我沒設置innodb,結果建表語句默認是mysiam引擎
數據庫方言 需要 設置 MySQL5InnoDBDialect 。否則建表語句 是 type=innode。導致無法建表,,而且涉及到外鍵,所以需要指定創建InnoDB引擎的表,我沒設置innodb,結果建表語句默認是mysiam引擎
2017-11-13
在index.jsp中鏈接<link type="text/css" rel="stylesheet" href="${pageContext.request.contextPath }/style/reset.css">
<link type="text/css" rel="stylesheet" href="${pageContext.request.contextPath }/style/main.css">
就是老師的效果。另外frame文件夾中有兩個html文件錯誤,是因為img標簽沒有閉合。
<link type="text/css" rel="stylesheet" href="${pageContext.request.contextPath }/style/main.css">
就是老師的效果。另外frame文件夾中有兩個html文件錯誤,是因為img標簽沒有閉合。
There is no Action mapped for namespace [/frame] and action name [department_findAll] associated with context path [/ssh_employee].
2017-11-04
Could not find a getter for birthday in class com.muke.employee.domain.Employee
求救
求救
2017-11-01
最贊回答 / 過道
你的類實現了這個接口了嗎?? implements ModelDriven<Department> 還有<...code...>這樣的話,dname就會被 Model的 getModel 方法 獲得,注入到 department 中去。
2017-10-26
最新回答 / 奮斗中的小男孩
將第一行:<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>修改為:<%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
2017-10-24