「端午」带你游览「学生信息管理系统」

217 阅读2分钟

主页:写程序的小王叔叔的博客欢迎来访****支持:点赞​收藏​关注

本篇内容展示学生管理信息系统的基本介绍,仅供学习参考。
介 绍本篇博客展示🧐学生管理信息系统
🧐的整体功能,通过本系统可以帮助在校学生🏃一起学习进步,同时纪念端午期间劳动成果系统中采用的最基础的技术实现的代码,每一行代码均是博主所写,代码中部分注释不全有bug出现,请私信联系博主,博主👨‍🏫25h时刻为您服务🍌🍌🍌,同时也可根据需要增删相应功能。
技术栈
前 端:EasyUI-1.7 JQuery HTML5 Thymeleaf
后 端:SpringBoot2.0 JPA SwaggerUI2 MySQL
浏览器:Google.....

你只要努力💪🏃🏋了,成功早晚会来💯💯💯~

不知不觉已经进入初夏,端午也接踵而至。22年初****疫情让我在家“待”-“待”-“待”,正好赶上端午,​自己写一个简单练手+可以帮助大学生学习的小项目吧。都说了那就开始整吧~

​一、「端午」过得怎么样

​二、怎么过「端午」

三、「端午」做点啥

 <div th:title="整体分析" style="overflow:auto;"  data-options="iconCls:'icon-chart'">
                  <ul >
                  	 <li>
                  		<a target="mainFrame" _href="/chart/toAddSourece"  th:value="成绩分析" >
                  			<span th:text="成绩分析"></span>
                  		</a>
                  	 </li>
                  	 <li>
                  		<a target="mainFrame" _href="/chart/toAddSourece"  th:value="学生统计" >
                  			<span th:text="学生统计"></span>
                  		</a>
                  	 </li>
                  	 <li>
                  		<a target="mainFrame" _href="/chart/toFindAllSourece" th:value="教师统计">
                  			<span th:text="教师统计"></span>
                  		</a>
                  	 </li>
                  	 <li>
                  		<a target="mainFrame" _href="/chart/toFindAllSourece" th:value="课程统计">
                  			<span th:text="课程统计"></span>
                  		</a>
                  	 </li>
                  </ul>
             </div>
             <div th:title="请假管理" style="overflow:auto;"  data-options="iconCls:'icon-qingjia'">
                  <ul >
                  	 <li>
                  		<a target="mainFrame" _href="/qingjia/toAddSourece"  th:value="请假申请" >
                  			<span th:text="请假申请"></span>
                  		</a>
                  	 </li>
                  	 <li>
                  		<a target="mainFrame" _href="/qingjia/toAddSourece"  th:value="请假审核" >
                  			<span th:text="请假审核"></span>
                  		</a>
                  	 </li>
                  </ul>
             </div>

spring.datasource.url=jdbc:mysql://localhost/tableName?useOldAliasMetadataBehavior=true&useUnicode=true&characterEncoding=utf-8&serverTimezone=UTC&useSSL=false
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.tomcat.max-active=1000
spring.datasource.tomcat.max-idle=2000
spring.datasource.tomcat.initialSize=1000
spring.jpa.properties.hibernate.hbm2ddl.auto=update
spring.jpa.properties.hibernate.show_sql=true
spring.jpa.database = MYSQL
spring.jpa.show-sql = true
spring.jpa.hibernate.ddl-auto = update
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5Dialect
spring.jpa.database-platform=org.hibernate.dialect.MySQL5Dialect

 	@ApiOperation(value="保存教师信息", notes="保存教师信息")
	@RequestMapping(value = "/saveOneTeacherInfo", method = RequestMethod.POST)
	@ResponseBody
	public Teacher saveOneTeacherInfo( Model model ,Teacher teacher, HttpSession session ) throws Exception {
		//验证当前新用户是否存在
 		Teacher teaInfo = teacherService.getOneTeaInfoByTeaInfo(teacher);
		//保存
		if(teaInfo == null) {
			//String randoms = String.valueOf( (int)((Math.random()*9+1)*100) );//用户编号;// 生成随机14位数字
			Teacher newTeanfo  = teacherService.saveOnsTeaInfo(teacher); 
		//修改	
		}else {
			teacher = teaInfo;
		}
		return teacher;
	}

四、如何品「端午」

⚠️注意 ⚠️

本篇内容为博主精心制作和开发,请善待博主的劳动成果禁止申请著作权认证!!

💯本期内容就结束了,如果内容有误,麻烦大家评论区指出

如有疑问❓可以在评论区💬或私信💬,尽我最大能力🏃‍♀️帮大家解决👨‍🏫!

​如果我的文章有帮助,欢迎点赞+关注✔️鼓励博主🏃,您的鼓励是我分享的动力🏃🏃🏃~