资源简介

该系统基于Springboot的教师教学质量评价系统,系统分为管理员、教师、学生角色,功能齐全,直接导入即可使用学习

资源截图

代码片段和文件信息

package com.evaluation;

import com.alibaba.fastjson.serializer.SerializerFeature;
import com.alibaba.fastjson.support.config.FastJsonConfig;
import com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;

import java.util.List;

@SpringBootApplication
@MapperScan(“com.evaluation.mapper“)
public class EvaluationApplication extends WebMvcConfigurerAdapter {

    @Override
    public void configureMessageConverters(List> converters) {

        // 初始化转换器
        FastJsonHttpMessageConverter fastConvert = new FastJsonHttpMessageConverter();
        // 初始化一个转换器配置
        FastJsonConfig fastJsonConfig = new FastJsonConfig();
        fastJsonConfig.setSerializerFeatures(SerializerFeature.PrettyFormat);
        // 将配置设置给转换器并添加到HttpMessageConverter转换器列表中
        fastConvert.setFastJsonConfig(fastJsonConfig);

        converters.add(fastConvert);
    }

        public static void main(String[] args) {
        SpringApplication.run(EvaluationApplication.class args);
    }

}

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

     文件        302  2020-09-25 22:34  评教\.git\config

     文件         73  2020-09-25 22:34  评教\.git\description

     文件         23  2020-09-25 22:34  评教\.git\HEAD

     文件        478  2020-09-25 22:34  评教\.git\hooks\applypatch-msg.sample

     文件        896  2020-09-25 22:34  评教\.git\hooks\commit-msg.sample

     文件       4655  2020-09-25 22:34  评教\.git\hooks\fsmonitor-watchman.sample

     文件        189  2020-09-25 22:34  评教\.git\hooks\post-update.sample

     文件        424  2020-09-25 22:34  评教\.git\hooks\pre-applypatch.sample

     文件       1643  2020-09-25 22:34  评教\.git\hooks\pre-commit.sample

     文件        416  2020-09-25 22:34  评教\.git\hooks\pre-merge-commit.sample

     文件       1348  2020-09-25 22:34  评教\.git\hooks\pre-push.sample

     文件       4898  2020-09-25 22:34  评教\.git\hooks\pre-rebase.sample

     文件        544  2020-09-25 22:34  评教\.git\hooks\pre-receive.sample

     文件       1492  2020-09-25 22:34  评教\.git\hooks\prepare-commit-msg.sample

     文件       3635  2020-09-25 22:34  评教\.git\hooks\update.sample

     文件      39770  2020-09-25 22:35  评教\.git\index

     文件        240  2020-09-25 22:34  评教\.git\info\exclude

     文件        179  2020-09-25 22:34  评教\.git\logs\HEAD

     文件        179  2020-09-25 22:34  评教\.git\logs\refs\heads\master

     文件        179  2020-09-25 22:34  评教\.git\logs\refs\remotes\origin\HEAD

     文件      11712  2020-09-25 22:34  评教\.git\objects\pack\pack-2239299425702eb504825d71176bf4bfe36de16a.idx

     文件    3976405  2020-09-25 22:34  评教\.git\objects\pack\pack-2239299425702eb504825d71176bf4bfe36de16a.pack

     文件        247  2020-09-25 22:34  评教\.git\packed-refs

     文件         41  2020-09-25 22:34  评教\.git\refs\heads\master

     文件         32  2020-09-25 22:34  评教\.git\refs\remotes\origin\HEAD

     文件         33  2020-09-25 22:34  评教\.gitignore

     文件         39  2020-09-25 22:34  评教\.idea\.gitignore

     文件        885  2020-09-25 22:34  评教\.idea\compiler.xml

     文件        280  2020-09-25 22:37  评教\.idea\encodings.xml

     文件        646  2020-09-25 22:37  评教\.idea\libraries\Maven__ch_qos_logback_logback_classic_1_2_3.xml

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

评论

共有 条评论