使用idea+springboot+Mybatis搭建web項目
使用idea+springboot+Mybatis搭建web項目
springboot的優勢之一就是快速搭建項目,省去了自己導入jar包和配置xml的時間,使用非常方便。
1、創建項目project,然後選擇Spring initializr,點擊下一步
2、按圖示進行勾選,點擊下一步,給項目起個名字,點擊確定。
3、項目生成有,點擊add as maven project,idea 會自動下載jar包,時間比較長
4、項目生成後格式如下圖所示:
其中DemoApplication.java是項目主入口,通過run/debug configuration進行配置,就可運行,因為集成了tomcat,所以該項目只需啟動一遍即可,不用每次修改代碼後重啟項目,但是修改代碼後需重新編譯下,新代碼才會生效。
5、生成的項目中,resources文件夾下,static文件夾下存放靜態文件,比如css、js、html和圖片等
templates下存放html文件,controller默認訪問該文件夾下的html文件。
這個在application.properties配置文件中是可以修改的。
6、在application.properties中配置數據庫信息
spring.datasource.url = jdbc:mysql://localhost:3306/test
spring.datasource.username = root
spring.datasource.password = 1234
spring.datasource.driverClassName = com.mysql.jdbc.Driver
#頁面熱加載
spring.thymeleaf.cache = false
創建一個controller類:helloworld
@Controller
@EnableAutoConfiguration
public class HelloWorld {
@Autowired
private IRegService regService;
@RequestMapping("/")
String home() {
return "index";
}
@RequestMapping("/reg")
@ResponseBody
Boolean reg(@RequestParam("loginPwd") String loginNum, @RequestParam("userId") String userId ){
String pwd = creatMD5(loginNum);
System.out.println(userId+":"+loginNum);
regService.regUser(userId,pwd);
return true;
}
private String creatMD5(String loginNum){
// 生成一個MD5加密計算摘要
MessageDigest md = null;
try {
md = MessageDigest.getInstance("MD5");
md.update(loginNum.getBytes());
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
}
return new BigInteger(1, md.digest()).toString(16);
}
}
user類:
public class User {
private String id;
private String userId;
private String pwd;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getPwd() {
return pwd;
}
public void setPwd(String pwd) {
this.pwd = pwd;
}
}
新建一個mapper接口
public interface UserMapper {
@Select("select * from users where userId = #{userId}")
User findUserByUserid(@Param("userId") String userId);
@Insert("insert into users (userId,pwd) values (#{userId},#{pwd})")
boolean insertUsers (@Param("userId") String userId,@Param("pwd") String pwd);
}
service接口及實現:
public interface IRegService {
boolean regUser(String uerId,String pwd);
}
@Service()
public class RegService implements IRegService {
@Autowired
private UserMapper userMapper;
@Override
public boolean regUser(String uerId, String pwd) {
Boolean flag;
try {
flag = userMapper.insertUsers(uerId,pwd);
}catch (Exception e){
return false;
}
return flag;
}
}
最後在主類名上添加mapperscan包掃描:
@SpringBootApplication
@MapperScan("com.example.mapper")
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
這是項目最後的包結構:
註意點:1、DemoApplication類跟controller包等平行
2、@controller註解返回指定頁面,本文中即返回index頁面,也就是templates文件夾下的index.html
3、如果需要返回json字符串、xml等,需要在有@controller類下相關的方法上加上註解@responsebody
4、@restcontroller註解的功能等同於@controller和@responsebody
有問題請留言,一起討論。
5、springboot默認緩存templates下的文件,如果html頁面修改後,看不到修改的效果,設置spring.thymeleaf.cache = false即可
轉自:http://blog.csdn.net/alantuling_jt/article/details/54893383
使用idea+springboot+Mybatis搭建web項目