-
大小: 28.13MB文件類型: .rar金幣: 1下載: 0 次發(fā)布日期: 2023-06-17
- 語(yǔ)言: Java
- 標(biāo)簽: 項(xiàng)目源碼??
資源簡(jiǎn)介
完整的SSM(spring-springMVC-mybatis)java項(xiàng)目集成
tomcat-7.0
jdk-1.7
mysql
代碼片段和文件信息
package?com.hello.controller;
import?org.springframework.beans.factory.annotation.Autowired;
import?org.springframework.stereotype.Controller;
import?org.springframework.web.bind.annotation.PathVariable;
import?org.springframework.web.bind.annotation.RequestMapping;
import?org.springframework.web.servlet.ModelAndView;
import?com.hello.dao.UserDAO;
import?com.hello.model.User;
@Controller
@RequestMapping(value=“/user“)
public?class?UserController{
@Autowired
private?UserDAO?userDao;
@RequestMapping(value?=?“/{users}.do“)
public?ModelAndView?findUser(@PathVariable?String?users){
int?id?=?Integer.parseInt(users);
User?user?=?userDao.selectByPrimaryKey(id);
ModelAndView?mv?=?new?ModelAndView();
mv.setViewName(“index“);
mv.addobject(“user“?user);
return?mv;
}
}
?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????文件???????4077??2018-01-23?14:58??helloSSM\.classpath
?????文件????????297??2018-01-23?14:58??helloSSM\.myme
?????文件???????1226??2018-01-23?15:11??helloSSM\.project
?????文件????????233??2018-01-25?17:54??helloSSM\readme.txt
?????文件????????815??2018-01-23?15:50??helloSSM\src\com\hello\controller\UserController.java
?????文件????????342??2018-01-23?15:26??helloSSM\src\com\hello\dao\UserDAO.java
?????文件???????2477??2018-01-23?15:40??helloSSM\src\com\hello\mapping\UserMapper.xm
?????文件????????657??2018-01-23?15:17??helloSSM\src\com\hello\model\User.java
?????文件????????715??2018-01-25?17:49??helloSSM\src\config.properties
?????文件????????716??2018-01-23?15:11??helloSSM\src\log4j.properties
?????文件???????2397??2018-01-23?15:21??helloSSM\src\spring-mvc.xm
?????文件???????4918??2018-01-23?15:22??helloSSM\src\spring-mybatis.xm
?????文件????????958??2018-01-25?17:56??helloSSM\user.sql
?????文件????????826??2018-01-23?15:47??helloSSM\WebRoot\index.jsp
?????文件?????????39??2018-01-23?14:58??helloSSM\WebRoot\me
?????文件???????1558??2018-01-23?15:50??helloSSM\WebRoot\WEB-INF\classes\com\hello\controller\UserController.class
?????文件????????376??2018-01-23?15:26??helloSSM\WebRoot\WEB-INF\classes\com\hello\dao\UserDAO.class
?????文件???????2477??2018-01-23?15:40??helloSSM\WebRoot\WEB-INF\classes\com\hello\mapping\UserMapper.xm
?????文件???????1111??2018-01-23?15:17??helloSSM\WebRoot\WEB-INF\classes\com\hello\model\User.class
?????文件????????715??2018-01-25?17:49??helloSSM\WebRoot\WEB-INF\classes\config.properties
?????文件????????716??2018-01-23?15:11??helloSSM\WebRoot\WEB-INF\classes\log4j.properties
?????文件???????2397??2018-01-23?15:21??helloSSM\WebRoot\WEB-INF\classes\spring-mvc.xm
?????文件???????4918??2018-01-23?15:22??helloSSM\WebRoot\WEB-INF\classes\spring-mybatis.xm
?????文件???????4467??2018-01-23?14:58??helloSSM\WebRoot\WEB-INF\lib\aopalliance-1.0.jar
?????文件????1864179??2018-01-23?14:58??helloSSM\WebRoot\WEB-INF\lib\aspectjweaver-1.8.8.jar
?????文件?????281694??2018-01-23?14:58??helloSSM\WebRoot\WEB-INF\lib\bsh-2.0b4.jar
?????文件?????231320??2018-01-23?14:58??helloSSM\WebRoot\WEB-INF\lib\commons-beanutils-1.8.0.jar
?????文件?????263965??2018-01-23?14:58??helloSSM\WebRoot\WEB-INF\lib\commons-codec-1.9.jar
?????文件?????575389??2018-01-23?14:58??helloSSM\WebRoot\WEB-INF\lib\commons-collections-3.2.1.jar
?????文件??????69002??2018-01-23?14:58??helloSSM\WebRoot\WEB-INF\lib\commons-fileupload-1.3.1.jar
............此處省略65個(gè)文件信息
評(píng)論
共有 條評(píng)論