• 大小: 3.31MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-12
  • 语言: Java
  • 标签: spring  

资源简介

一个小Demo,基于Maven项目,这是个源码包,工程如何导入的文档也在里面,只有Spring框架,没有关联数据库,里面是一个简单的用户登陆的验证测试,我的博客http://blog.csdn.net/yc199505/article/details/72528822里面有部分源码,5分的资源分,理由是这样的:这是一个很基础的框架,配置文件可以复用,里面还有很多常用的前端框架,路径等等都设置好了,实用性非常高,希望下载了的大家,能给予积极的反馈,谢谢!

资源截图

代码片段和文件信息

package com.edu.yc.entity;

public class User {
private String username;
private String password;
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
@Override
public String toString() {
return “User [username=“ + username + “ password=“ + password + “]“;
}

@Override
public boolean equals(object obj){
if(obj instanceof User){
User user = (User) obj;
String username = user.getUsername();
String password = user.getPassword();
if(this.username!=null||this.password!=null){
if(this.username.equals(username)&&this.password.equals(password)){
return true;
}else{
return false;
}
}else{
return false;
}
}else{
return false;
}
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        940  2017-05-19 15:56  src\main\java\com\edu\yc\entity\User.java

     文件        715  2017-05-19 16:22  src\main\java\com\edu\yc\service\UserService.java

     文件       1479  2017-05-19 16:49  src\main\java\com\edu\yc\web\IndexController.java

     文件       3939  2017-05-02 08:50  src\main\resources\applicationContext-mvc.xml

     文件       1637  2017-05-02 08:50  src\main\resources\applicationContext.xml

     文件        750  2017-05-02 08:50  src\main\resources\log4j.properties

     文件         71  2017-05-02 08:50  src\main\resources\yc.properties

     文件      21368  2017-05-02 13:35  src\main\webapp\static\bootstrap\css\bootstrap-theme.css

     文件      23071  2017-05-02 13:35  src\main\webapp\static\bootstrap\css\bootstrap-theme.css.map

     文件      18860  2017-05-02 13:35  src\main\webapp\static\bootstrap\css\bootstrap-theme.min.css

     文件     132546  2017-05-02 13:35  src\main\webapp\static\bootstrap\css\bootstrap.css

     文件     220790  2017-05-02 13:35  src\main\webapp\static\bootstrap\css\bootstrap.css.map

     文件     109518  2017-05-02 13:35  src\main\webapp\static\bootstrap\css\bootstrap.min.css

     文件      20335  2017-05-02 13:35  src\main\webapp\static\bootstrap\fonts\glyphicons-halflings-regular.eot

     文件      62927  2017-05-02 13:35  src\main\webapp\static\bootstrap\fonts\glyphicons-halflings-regular.svg

     文件      41280  2017-05-02 13:35  src\main\webapp\static\bootstrap\fonts\glyphicons-halflings-regular.ttf

     文件      23320  2017-05-02 13:35  src\main\webapp\static\bootstrap\fonts\glyphicons-halflings-regular.woff

     文件      60681  2017-05-02 13:35  src\main\webapp\static\bootstrap\js\bootstrap.js

     文件      31819  2017-05-02 13:35  src\main\webapp\static\bootstrap\js\bootstrap.min.js

     文件      96381  2017-05-02 13:35  src\main\webapp\static\js\jquery-1.11.0.min.js

     文件         61  2017-05-02 13:35  src\main\webapp\static\js\jquery-jbox\2.3\docs\ajax.html

     文件       1322  2017-05-02 13:35  src\main\webapp\static\js\jquery-jbox\2.3\docs\iframe.html

     文件       9816  2017-05-02 13:35  src\main\webapp\static\js\jquery-jbox\2.3\docs\jbox-demo-depends\demo.js

     文件       1116  2017-05-02 13:35  src\main\webapp\static\js\jquery-jbox\2.3\docs\jbox-demo-depends\down.png

     文件       1313  2017-05-02 13:35  src\main\webapp\static\js\jquery-jbox\2.3\docs\jbox-demo-depends\highlight\AUTHORS.en.txt

     文件       5374  2017-05-02 13:35  src\main\webapp\static\js\jquery-jbox\2.3\docs\jbox-demo-depends\highlight\export.html

     文件      17501  2017-05-02 13:35  src\main\webapp\static\js\jquery-jbox\2.3\docs\jbox-demo-depends\highlight\highlight.js

     文件      12523  2017-05-02 13:35  src\main\webapp\static\js\jquery-jbox\2.3\docs\jbox-demo-depends\highlight\highlight.pack.js

     文件       1538  2017-05-02 13:35  src\main\webapp\static\js\jquery-jbox\2.3\docs\jbox-demo-depends\highlight\languages\javascript.js

     文件       1498  2017-05-02 13:35  src\main\webapp\static\js\jquery-jbox\2.3\docs\jbox-demo-depends\highlight\LICENSE

............此处省略975个文件信息

评论

共有 条评论