猿创征文|为了学习英语,我开发了一个单词对战系统
Posted 程序员springmeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了猿创征文|为了学习英语,我开发了一个单词对战系统相关的知识,希望对你有一定的参考价值。
最近有的小伙伴,开始学英语了,但是背单词不方便。
于是小孟开发了一个单词系统。
大家在大学的时候,一定要增加动手能力。
大学学生之间的差距非常非常的。
大学和大学之间的差距巨大,例如985名校和普通双非在资源、教学、人脉之间的差距都是巨大的。
这个没办法改变的。
但是在同一个大学,同一个专业,四年后差距也是巨大的。有的学生毕业的时候offer好几个,有的学生保研成功,有的学生通过自己的努力考研到心仪的学校,有的因为挂科或者作弊拿不到学位证,有的学生毕业后几个月依然在投递简历……
学生的努力是一方面,关键是在规划方面差太多了。
这点在优秀家庭尤为的突出,昨天和一个大学的同学吃饭,他现在已经是副教授了。他说了一个案例我印象非常深刻,一个农村的孩子通过高考考入到自己的大学,一个家庭稍微优越的孩子也高考了同一个专业,都是金融专业,而且农村孩子四年大学的成绩比城市的孩子成绩还好。
但是毕业后,城市的孩子去了国外读书,在业余时间考取了本专业的一些重量级证书,硕士毕业后,去到了不错的单位。农村的孩子找工作四处碰壁。
农村孩子问城市孩子:这些规划你都是怎么做的?
城市孩子说:父母给做的。
这种眼界和规划,不是一代人能有的,有的需要两代甚至三代人的努力。
昨天一个VIP的小伙伴,给我发了他学长的简历,确实优秀,这种都是规划的结果,例如:大学我要参加多少比赛,做几个项目,考几个证书,需要进入哪些导师的团队……
想提高自己的技术能力,就多多参加比赛。
这种简历怎么可能找不到工作?后来保研成功。小孟看了这个简历也是直呼:牛叉,666
牛b的人都喜欢做规划,然后再一点点去执行。如果方向都错了的话,努力有个P用!
规划有很多,包括:职场规划、健身规划、学习规划等。
企业都在规划,未来三年规划、五年规划,如果不规划,思想不超前,随时可能被吞没。
更何况人呢!
一,系统介绍
随着“互联网+”的大潮兴起,移动应用受热捧。
其中,android应用借其强大的用户基础及其应用时的便捷而深受欢迎。在此基础上,以Android为载体的单词对战平台,可以满足复习单词的需求。因此,结合以上优势设计并实现基于Android的单词对战APP,符合我国互联网精准化问答和个性化服务的趋势。现如今随着消费方式的升级,学习单词的方式也变得多种多样,随着计算机与信息技术的发展,学习单词也由线下发展到了线上管理,越来越多的人选择利用计算机以及网络信息技术进行线上的单词学习,线上管理的好处在于可以实时统计以及查看信息,并且可以持久化到硬件设备中,数据管理方便,成本低,是如今信息管理的首选,本文就以Android为基础,设计并开发自己的系统,一个基于Android的单词对战系统。
本系统主要由Android、服务端、数据管理端构成。客户端的页面实现通过网络与服务器REST API接口通信获取 mysql数据。本人重点参与网上单词对战系统客户端、服务器以及数据库的设计、开发、测试工作。
基于Android的单词对战系统主要实现了以下功能:
(1)用户管理。主要实现了基于Android的单词对战系统的用户管理功能。
(2)对战管理。主要实现了基于Android的单词对战系统的对战管理功能。
(3)单词管理。主要实现了基于Android的单词对战系统的单词管理功能。
(4)好友管理。主要实现了基于Android的单词对战系统的好友管理功能。
(5)故事管理。主要实现了基于Android的单词对战系统的故事管理功能。(6)类型管理。主要实现了基于Android的单词对战系统的类型管理功能。
(7)系统管理。主要实现了基于Android的单词对战系统的系统管理功能。
二,系统演示
在基于Android的单词对战系统的首页中,可以看到信息和公告。首页包括登陆窗口、信息窗口等。实现的方法是。首页主要方便管理员进行首页展示。客户端发出一个http请求给web服务器,web服务器对http请求进行解析,如果匹配DispatcherServlet的请求映射路径(在web.xml中指定),web容器将请求转交给DispatcherServlet。
后台管理系统主要用于基于Android的单词对战系统的管理员进行后台管理, 后端管理对于control的处理关键就是:DispatcherServlet的handlerMappings集合中根据请求的URL匹配每一个handlerMapping对象中的某个handler,匹配成功之后将会返回这个handler的处理连接handlerExecutionChain对象。而这个handlerExecutionChain对象中将会包含用户自定义的多个handlerInterceptor对象。
三,核心代码演示
@Aspect
@Component
public class OperLogAspect
private ThreadLocal<Long> startTime = new ThreadLocal<>();
@Autowired
private OperRecordService operRecordService;
@Pointcut("@annotation(com.egao.common.core.annotation.OperLog)")
public void operLog()
@Before("operLog()")
public void doBefore(JoinPoint joinPoint) throws Throwable
startTime.set(System.currentTimeMillis());
@AfterReturning(pointcut = "operLog()", returning = "result")
public void doAfterReturning(JoinPoint joinPoint, Object result)
saveLog(joinPoint, result, null);
@AfterThrowing(value = "operLog()", throwing = "e")
public void doAfterThrowing(JoinPoint joinPoint, Exception e)
saveLog(joinPoint, null, e);
private void saveLog(JoinPoint joinPoint, Object result, Exception e)
// 获取reques对象
ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
HttpServletRequest request = (attributes == null ? null : attributes.getRequest());
// 构建操作日志
OperRecord operRecord = new OperRecord();
operRecord.setUserId(getLoginUserId());
if (startTime.get() != null) operRecord.setSpendTime(System.currentTimeMillis() - startTime.get());
if (request != null)
operRecord.setRequestMethod(request.getMethod());
operRecord.setUrl(request.getRequestURI());
operRecord.setIp(UserAgentGetter.getIp(request));
// 记录异常信息
if (e != null)
operRecord.setState(1);
operRecord.setComments(StrUtil.sub(e.toString(), 0, 2000));
// 记录模块名、操作功能、请求方法、请求参数、返回结果
MethodSignature signature = (MethodSignature) joinPoint.getSignature();
operRecord.setOperMethod(joinPoint.getTarget().getClass().getName() + "." + signature.getName());
Method method = signature.getMethod();
if (method != null)
OperLog operLog = method.getAnnotation(OperLog.class);
if (operLog != null)
operRecord.setModel(operLog.value());
operRecord.setDescription(operLog.desc());
if (operLog.param() && request != null)
operRecord.setParam(StrUtil.sub(JSON.toJSONString(request.getParameterMap()), 0, 2000));
if (operLog.result() && result != null)
operRecord.setResult(StrUtil.sub(JSON.toJSONString(result), 0, 2000));
operRecordService.saveAsync(operRecord);
/**
* 获取当前登录的userId
*/
private Integer getLoginUserId()
Subject subject = SecurityUtils.getSubject();
if (subject == null) return null;
Object object = subject.getPrincipal();
if (object instanceof User) return ((User) object).getUserId();
return null;
/**
* 业务异常
* Created by xiaomeng
*/
public class BusinessException extends IException
private static final long serialVersionUID = 5450935008012318697L;
public BusinessException()
super();
public BusinessException(String message)
super(message);
public BusinessException(Integer code, String message)
super(code, message);
@Override
public Integer getCode()
Integer code = super.getCode();
if (code == null)
code = 500;
return code;
@Override
public String getMessage()
String message = super.getMessage();
if (message == null)
message = "系统错误";
return message;
public class ParameterException extends IException
private static final long serialVersionUID = 7993671808524980055L;
public ParameterException()
super();
public ParameterException(String message)
super(message);
public ParameterException(Integer code, String message)
super(code, message);
@Override
public Integer getCode()
Integer code = super.getCode();
if (code == null)
code = 400;
return code;
@Override
public String getMessage()
String message = super.getMessage();
if (message == null)
message = "参数错误";
return message;
@Controller
@RequestMapping("/sys/dict")
public class DictionaryController extends BaseController
@Autowired
private DictionaryService dictionaryService;
@RequiresPermissions("sys:dict:view")
@RequestMapping()
public String view()
return "system/dictionary.html";
/**
* 分页查询字典
*/
@OperLog(value = "字典管理", desc = "分页查询")
@RequiresPermissions("sys:dict:list")
@ResponseBody
@RequestMapping("/page")
public PageResult<Dictionary> page(HttpServletRequest request)
PageParam<Dictionary> pageParam = new PageParam<>(request);
return new PageResult<>(dictionaryService.page(pageParam, pageParam.getWrapper()).getRecords(), pageParam.getTotal());
/**
* 查询全部字典
*/
@OperLog(value = "字典管理", desc = "查询全部")
@RequiresPermissions("sys:dict:list")
@ResponseBody
@RequestMapping("/list")
public JsonResult list(HttpServletRequest request)
PageParam<Dictionary> pageParam = new PageParam<>(request);
return JsonResult.ok().setData(dictionaryService.list(pageParam.getOrderWrapper()));
/**
* 根据id查询字典
*/
@OperLog(value = "字典管理", desc = "根据id查询")
@RequiresPermissions("sys:dict:list")
@ResponseBody
@RequestMapping("/get")
public JsonResult get(Integer id)
return JsonResult.ok().setData(dictionaryService.getById(id));
/**
* 添加字典
*/
@OperLog(value = "字典管理", desc = "添加", param = false, result = true)
@RequiresPermissions("sys:dict:save")
@ResponseBody
@RequestMapping("/save")
public JsonResult save(Dictionary dictionary)
if (dictionaryService.count(new QueryWrapper<Dictionary>().eq("dict_code", dictionary.getDictCode())) > 0)
return JsonResult.error("字典标识已存在");
if (dictionaryService.count(new QueryWrapper<Dictionary>().eq("dict_name", dictionary.getDictName())) > 0)
return JsonResult.error("字典名称已存在");
if (dictionaryService.save(dictionary))
return JsonResult.ok("添加成功");
return JsonResult.error("添加失败");
/**
* 修改字典
*/
@OperLog(value = "字典管理", desc = "修改", param = false, result = true)
@RequiresPermissions("sys:dict:update")
@ResponseBody
@RequestMapping("/update")
public JsonResult update(Dictionary dictionary)
if (dictionaryService.count(new QueryWrapper<Dictionary>().eq("dict_code", dictionary.getDictCode())
.ne("dict_id", dictionary.getDictId())) > 0)
return JsonResult.error("字典代码已存在");
if (dictionaryService.count(new QueryWrapper<Dictionary>().eq("dict_name", dictionary.getDictName())
.ne("dict_id", dictionary.getDictId())) > 0)
return JsonResult.error("字典名称已存在");
if (dictionaryService.updateById(dictionary))
return JsonResult.ok("修改成功");
return JsonResult.error("修改失败");
/**
* 删除字典
*/
@OperLog(value = "字典管理", desc = "删除", result = true)
@RequiresPermissions("sys:dict:remove")
@ResponseBody
@RequestMapping("/remove")
public JsonResult remove(Integer id)
if (dictionaryService.removeById(id))
return JsonResult.ok("删除成功");
return JsonResult.error("删除失败");
/**
* 批量添加字典
*/
@OperLog(value = "字典管理", desc = "批量添加", param = false, result = true)
@RequiresPermissions("sys:dict:save")
@ResponseBody
@RequestMapping("/saveBatch")
public JsonResult saveBatch(@RequestBody List<Dictionary> list)
// 对集合本身进行非空和重复校验
StringBuilder sb = new StringBuilder();
sb.append(CoreUtil.listCheckBlank(list, "dictCode", "字典标识"<以上是关于猿创征文|为了学习英语,我开发了一个单词对战系统的主要内容,如果未能解决你的问题,请参考以下文章