首页 > 作文

springboot配置tomcat配置乱码(配置乱码原因和对应解决法)

更新时间:2023-04-05 15:32:28 阅读: 评论:0

一些设计上的调整

在查了一些资料和吸收了一些评论给出良好的建议之后,我觉得有必要对一些设计进行一些调整:

1)数据库:命名应该更加规范,比如表示分类最好用category而不是sort,表示评论最好用comment而不是message;2)resful apis:在准备着手开始写后台的时候就已经发现,本来想的是凡是以/api开头的都是暴露出来给前端用的,凡是以/admin开头的都是给后台使用的地址,但是意外的没有设计后天的api也把一些删除命令暴露给了前端,这就不好了重新设计设计;3)命名规范的问题:因为使用mybatis逆向工程自动生成的时候,配置了一个uactualcolumnnames使用表真正名称的东西,所以整得来生成pojo类基础字段有下划线,看着着实有点不爽,把它给干掉干掉…;

数据库调整

把字段规范了一下,并且删除了分类下是否有效的字段(感觉这种不经常变换的字段留着也没啥用干脆干掉..),所以调整为了下面这个样子(调整字段已标红):

然后重新使用生成器自动生成对应的文件,注意记得修改generatorconfig.xml文件中对应的数据库名称;

创建和修改时间的字段设置

通过查资料发现其实我们可以通过直接设置数据库来自动更新我们的modified_by字段,并且可以像设置初始值那样给create_by和modified_by两个字段以当前时间戳设置默认值,这里具体以tbl_article_info这张表为例:

create table `tbl_article_info` ( `id` bigint(40) not null auto_increment comment '主键', `title` varchar(50) not null default '' comment '文章标题', `summary` varchar(300) not null default '' comment '文章简介,默认100个汉字以内', `is_top` tinyint(1) not null default '0' comment '文章是否置顶,0为否,1为是', `traffic` int(10) not null default '0' comment '文章访问量', `create_by` datetime not null default current_timestamp comment '创建时间', `modified_by` datetime not null default current_timestamp on update current_timestamp comment '修改日期', primary key (`id`)) engine=innodb default chart=utf8;

我们通过设置default为current_timestamp,然后给modified_by字段多添加了一句on update current_timestamp,这样它就会在更新的时候将该字段的值设置为更新时间,这样我们就不用在后台关心这两个值了,也少写了一些代码(其实是写代码的时候发现可以这样偷懒..hhh…);

restful apis重新设计

我们需要把一些不能够暴露给前台的api收回,然后再设计一下后台的api,捣鼓了一下,最后大概是这个样子了:

后台restful apis:

前台开放resful apis:

这些api只是用来和前端交互的接口,另外一些关于日志啊之类的东西就直接在后台写就行了,ok,这样就爽多了,可以开始着手写代码了;

基本配置

随着配置内容的增多,我逐渐的想要放弃.yml的配置文件,主要的一点是这东西不好对内容进行分类(下图是简单配置了一些基本文件后的.yml和.properties文件的对比)..

最后还是用回.properties文件吧,不分类还是有点难受

编码设置

我们首先需要解决的是中文乱码的问题,对应get请求,我们可以通过修改tomcat的配置文件【rver.xml】来把它默认的编码格式改为utf-8,而对于post请求,我们需要统一配置一个拦截器一样的东西把请求的编码统一改成utf-8:

## ——————————编码设置——————————spring.http.encoding.chart=utf-8spring.http.encoding.force=truespring.http.encoding.enabled=truerver.tomcat.uri-encoding=utf-8

但是这样设置之后,在后面的使用当中还是会发生提交表单时中文乱码的问题,在网上搜索了一下找到了解决方法,新建一个【config】包创建下面这样一个配置类:

@configurationpublic class mywebmvcconfigureradapter extends webmvcconfigureradapter { @bean public httpmessageconverter<string> responbodyconverter() { stringhttpmessageconverter converter = new stringhttpmessageconverter(chart.forname("utf-8")); return converter; } @override public void configuremessageconverters(list<httpmessageconverter<?>> converters) { super.configuremessageconverters(converters); converters.add(responbodyconverter()); } @override public void configurecontentnegotiation(contentnegotiationconfigurer configurer) { configurer.favorpathextension(fal); }}

数据库及连接池配置

决定这一次试试druid的监控功能,所以给一下数据库的配置:

## ——————————数据库访问配置——————————spring.datasource.type=com.alibaba.druid.pool.druiddatasourcespring.datasource.driver-class-name = com.mysql.jdbc.driverspring.datasource.url = jdbc:mysql://127.0.0.1:3306/blog?characterencoding=utf-8spring.datasource.urname = rootspring.datasource.password = 123456# 下面为连接池的补充设置,应用到上面所有数据源中# 初始化大小,最小,最大spring.datasource.druid.initial-size=5spring.datasource.druid.min-idle=5spring.datasource.druid.max-active=20# 配置获取连接等待超时的时间spring.datasource.druid.max-wait=60000# 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒spring.datasource.druid.time-between-eviction-runs-millis=60000# 配置一个连接在池中最小生存的时间,单位是毫秒spring.datasource.druid.min-evictable-idle-time-millis=300000spring.datasource.druid.validation-query=lect 1 from dualspring.datasource.druid.test-while-idle=truespring.datasource.蛋糕牌子druid.test-on-borrow=falspring.datasource.druid.test-on-return=fal# 打开pscache,并且指定每个连接上pscache的大小spring.datasource.druid.pool-prepared-statements=truespring.datasource.druid.max-pool-prepared-statement-per-connection-size=20# 配置监控统计拦截的filters,去掉后监控界面sql无法统计,'wall'用于防火墙spring.datasource.druid.filters=stat,wall,log4j

日志配置

在springboot中其实已经使用了logback来作为默认的日志框架,这是log4j作者推出的新一代日志框架,它效率更高、能够适应诸多的运行环境,同时天然支持slf4j,在springboot中我们无需再添加额外的依赖就能使用,这是因为在spring-boot-starter-web包中已经有了该依赖了,所以我们只需要进行配置使用就好了

第一步:创建logback-spring.xml

当项目跑起来的时候,我们不可能还去看控制台的输出信息吧,所以我们需要把日志写到文件里面,在网上找到一个例子(链接:
http://tengj.top/2017/04/05/springboot7/)

<?xml version="1.0" encoding="utf-8"?><configuration scan="true" scanperiod="60 conds" debug="fal"> <contextname>logback</contextname> <!--自己定义一个log.path用于说明日志的输出目录--> <property name="log.path" value="/log/wmyskxz/"/> <!--输出到控制台--> <appender name="console" class="ch.qos.logback.core.consoleappender"> <!-- <filter class="ch.qos.logback.classic.filter.thresholdfilter"> <level>error</level> </filter>--> <encoder> <pattern>%d{hh:mm:ss.sss} %contextname [%thread] %-5level %logger{36} - %msg%n</pattern> </encoder> </appender> <!--输出到文件--> <appender name="file" class="ch.qos.logback.core.rolling.rollingfileappender"> <rollingpolicy class="ch.qos.logback.core.rolling.timebadrollingpolicy"> <filenamepattern>${log.path}/logback.%d{yyyy-mm-dd}.log</filenamepattern> </rollingpolicy> <encoder> <pattern>%d{hh:mm:ss.sss} %contextname [%thread] %-5level %logger{36} - %msg%n</pattern> </encoder> </appender> <root level="info"> <appender-ref ref="console"/> <appender-ref ref="file"/> </root> <!-- logbac天数k为java中的包 --> <logger name="cn.wmyskxz.blog.controller"/></configuration>

在spring boot中你只要按照规则组织文件名,就能够使得配置文件能够被正确加载,并且官方推荐优先使用带有-spring的文件名作为日志的配置(如上面使用的logback-spring.xml,而不是logback.xml),满足这样的命名规范并且保证文件在src/main/resources下就好了;

第二步:重启项目检查是否成功

我们定义的目录位置为/log/wmyskxz/,但是在项目的根目录下并没有发现这样的目录,反而是在当前盘符的根目录..不是很懂这个规则..总之是成功了的..

打开是密密麻麻一堆跟控制台一样的【info】级别的信息,因为这个系统本身就比较简单,所以就没有必要去搞什么文本切割之类的东西了,ok..日志算是配置完成;

实际测试了一下,上线之后肯定需要调整输出级别的,不然日志文件就会特别大…

拦截器配置

我们需要对地址进行拦截,对所有的/admin开头的地址请求进行拦截,因为这是后台管理的默认访问地址开头,这是必须进行验证之后才能访问的地址,正如上面的restful apis,这里包含了一些增加/删除/更改/编辑一类的操作,而统统这些操作都是不能够开放给用户的操作,所以我们需要对这些地址进行拦截:

第一步:创建ur实体类

做验证还是需要添加ssion,不然不好弄,所以我们还是得创建一个常规的实体:

public class ur { private string urname; private string password; /* getter and tter */}

第二步:创建拦截器并继承handlerinterceptor接口

在【interceptor】包下新建一个【backinterceptor】类并继承handlerinterceptor接口:

public class backinterceptor implements handlerinterceptor { private static string urname = "wmyskxz"; private static string password = "123456"; @override public boolean prehandle(httprvletrequest request, httprvletrespon respon, object handler) throws exception { boolean flag = true; ur ur = (ur) request.getssion().getattribute("ur"); if (null == ur) { flag = fal; } el { // 对用户账号进行验证,是否正确 if (ur.geturname().equals(urname) && ur.getpassword().equals(password)) { flag = true; } el { flag = fal; } } return flag; }}

在拦截器中,我们从ssion中取出了ur,并判断是否符合要求,这里我们直接写死了(并没有更改密码的需求,但需要加密),而且我们并没有做任何的跳转操作,原因很简单,根本就不需要跳转,因为访问后台的用户只有我一个人,所以只需要我知道正确的登录地址就可以了…

第三步:在配置类中复写addinterceptors方法

刚才我们在设置编码的时候自己创建了一个继承自webmvcconfigureradapter的设置类,我们需要复写其中的addinterceptors方法来为我们的拦截器添加配置:

@overridepublic void addinterceptors(interceptorregistry registry) { // addpathpatterns 用于添加拦截规则 // excludepathpatterns 用户排除拦截 registry.addinterceptor(new backinterceptor()).addpathpatterns("/admin/**").excludepathpatterns("/tologin"); super.addinterceptors(registry);}
说明:这个方法也很简单,通过在addpathpatterns中添加拦截规则(这里设置拦截/admin开头的所有地址),并通过excludepathpatterns来排除拦截的地址(这里为/tologin,即登录地址,到时候我可以弄得复杂隐蔽一点儿)

第四步:配置登录页面

以前我们在写spring mvc的时候,如果需要访问一个页面,必须要在controller中添加一个方法跳转到相应的页面才可以,但是在springboot中增加了更加方便快捷的方法:

/** * 以前要访问一个页面需要先创建个controller控制类,在写方法跳转到页面 * 在这里配置后就不需要那么麻烦了,直接访问http://localhost:8080/tologin就跳转到login.html页面了 * * @param registry */@overridepublic void addviewcontrollers(viewcontrollerregistry registry) { registry.addviewcontroller("/admin/login").tviewname("login.html"); super.addviewcontrollers(registry);}
注意:login.html记得要放在【templates】下才会生效哦…(我试过使用login绑定视图名不成功,只能写全了…)

访问日志记录

上面我们设置了访问限制的拦截器,对后台访问进行了限制,这是拦截器的好处,我们同样也使用拦截器对于访问数量进行一个统计

第一步:编写前台访问拦截器

对照着数据库的设计,我们需要保存的信息都从request对象中去获取,然后保存到数据库中即可,代码也很简单:

public class foreinterceptor implements handlerinterceptor { @autowired sysrvice sysrvice; private syslog syslog = new syslog(); private sysview sysview = new sysview(); @override public boolean prehandle(httprvletrequest request, httprvletrespon respon, object handler) throws exception { // 访问者的ip string ip = request.getremoteaddr(); // 访问地址 string url = request.getrequesturl().tostring(); //得到用户的浏览器名 string urbrowr = browrutil.getosandbrowrinfo(request); // 给syslog增加字段 syslog.tip(stringutils.impty(ip) ? "0.0.0.0" : ip); syslog.toperateby(stringutils.impty(urbrowr) ? "获取浏览器名失败" : urbrowr); syslog.toperateurl(stringutils.impty(url) ? "获取url失败" : url); // 增加访问量 sysview.tip(stringutils.impty(ip) ? "0.0.0.0" : ip); sysrvice.addview(sysview); return true; } @override public void posthandle(httprvletrequest request, httprvletrespon respon, object handler, modelandview modelandview) throws exception { handlermethod handlermethod = (handlermethod) handler; method method = handlermethod.getmethod(); // 保存日志信息 syslog.tremark(method.getname()); sysrvice.addlog(syslog); } @override public void aftercompletion(httprvletrequest request, httprvletrespon respon, object handler, exception ex) throws exception { }}
注意:但是需要注意的是测试的时候别把拦截器开了(主要是posthandle方法中中无法强转handler),不然不方便测试…

browrutil是找的网上的一段代码,直接黏贴复制放【util】包下就可以了:

/** * 用于从request请求中获取到客户端的获取操作系统,浏览器及浏览器版本信息 * * @author:wmyskxz * @create:2018-06-21-上午 8:40 */public class browrutil { /** * 获取操作系统,浏览器及浏览器版本信息 * * @param request * @return */ public static string getosandbrowrinfo(httprvletrequest request) { string browrdetails = request.getheader("ur-agent"); string uragent = browrdetails; string ur = uragent.tolowerca(); string os = ""; string browr = ""; //=================os info======================= if (uragent.tolowerca().indexof("windows") >= 0) { os = "windows"; } el if (uragent.tolowerca().indexof("mac") >= 0) { os = "mac"; } el if (uragent.tolowerca().indexof("x11") >= 0) { os = "unix"; } el if (uragent.tolowerca().indexof("android") >= 0) { os = "android"; } el if (uragent.tolowerca().indexof("iphone") >= 0) { os = "iphone"; } el { os = "unknown, more-info: " + uragent; } //===============browr=========================== if (ur.contains("edge")) { browr = (uragent.substring(uragent.indexof("edge")).split(" ")[0]).replace("/", "-"); } el if (ur.contains("msie")) { string substring = uragent.substring(uragent.indexof("msie")).split(";")[0]; browr = substring.split(" ")[0].replace("msie", "ie") + "-" + substring.split(" ")[1]; } el if (ur.contains("safari") && ur.contains("version")) { browr = (uragent.substring(uragent.indexof("safari")).split(" ")[0]).split("/")[0] + "-" + (uragent.substring(uragent.indexof("version")).split(" ")[0]).split("/")[1]; } el if (ur.contains("opr") || ur.contains("opera")) { if (ur.contains("opera")) { browr = (uragent.substring(uragent.indexof("opera")).split(" ")[0]).split("/")[0] + "-" + (uragent.substring(uragent.indexof("version")).split(" ")[0]).split("/")[1]; } el if (ur.contains("opr")) { browr = ((uragent.substring(uragent.indexof("opr")).split(" ")[0]).replace("/", "-")) .replace("opr", "opera"); } } el if (ur.contains("chrome")) { browr = (uragent.substring(uragent.indexof("chrome")).split(" ")[0]).replace("/", "-"); } el if ((ur.indexof("mozilla/7.0") > -1) || (ur.indexof("netscape6") != -1) || (ur.indexof("mozilla/4.7") != -1) || (ur.indexof("mozilla/4.78") != -1) || (ur.indexof("mozilla/4.08") != -1) || (ur.indexof("mozilla/3") != -1)) { browr = "netscape-?"; } el if (ur.contains("firefox")) { browr = (uragent.substring(uragent.indexof("firefox")).split(" ")[0]).replace("/", "-"); } el if (ur.contains("rv")) { string ieversion = (uragent.substring(uragent.indexof("rv")).split(" ")[0]).replace("rv:", "-"); browr = "ie" + ieversion.substring(0, ieversion.length() - 1); } el { browr = "unknown, more-info: " + uragent; } return os + "-" + browr; }}

第二步:设置拦截地址

还是在刚才的配置类中,新增这么一条:

@overridepublic void addinterceptors(interceptorregistry registry) { // addpathpatterns 用于添加拦截规则 // excludepathpatterns 用户排除拦截 registry.addinterceptor(new backinterceptor()).addpathpatterns("/admin/**").excludepathpatterns("/tologin"); registry.addintercep板间tor(getforeinterceptor()).addpathpatterns("/**").excludepathpatterns("/tologin","/admin/**"); super.addinterceptors(registry);}

设置默认错误页面

在springboot中,默认的错误页面比较丑(如下),所以我们可以自己改得稍微好看一点儿,具体的教程在这里:
/d/file/titlepic/ ,我就搞前台的时候再去弄了…

rvice 层开发

这是纠结最久应该怎么写的,一开始我还准备老老实实地利用mybatis逆向工程生成的一堆东西去给每一个实体创建一个城南旧事摘抄rvice的,这样其实就只是对dao层进行了一层不必要的封装而已,然后通过分析其实主要的业务也就分成几个:文章/评论/分类/日志浏览量这四个部分而已,所以创建这四个rvice就好了;

比较神奇的事情是在网上找到一种通用mapper的最佳实践方法,整个人都惊了,“wtf?还可以这样写哦?”,资料如下:
http://tengj.top/2017/12/20/springboot11/

emmmm..我们通过mybatis的逆向工程,已经很大程度上简化了我们的开发,因为在dao层我们已经免去了自己写sql语句,自己写实体,自己写xml映射文件的麻烦,但在rvice层我们仍然无可避免的要写一些类似功能的代码,有没有什么方法能把这些比较通用的方法给提取出来呢? 答案就在上面的链接中,oh,简直太酷了…我决定在这里介绍一下

通用接口开发

在spring4中,由于支持了泛型注解,再结合通用mapper,我们的想法得到了一个最佳的实践方法,下面我们来讲解一下:

第一步:创建通用接口

我们把一些常见的,通用的方法统一使用泛型封装在一个通用接口之中:

/** * 通用接口 * * @author: wmyskxz * @create: 2018年6月15日10:27:04 */public interface irvice<t> { t lectbykey(object key); int save(t entity); int delete(object key); int updateall(t entity); int updatenotnull(t entity); list<t> lectbyexample(object example);}

第二步:实现通用接口类

/** * 通用rvice * * @param <t> */public abstract class barvice<t> implements irvice<t> { @autowired protected mapper<t> mapper; public mapper<t> getmapper() { return mapper; } /** * 说明:根据主键字段进行查询,方法参数必须包含完整的主键属性,查询条件使用等号 * * @param key * @return */ @override public t lectbykey(object key) { return mapper.lectbyprimarykey(key); } /** * 说明:保存一个实体,null的属性也会保存,不会使用数据库默认值 * * @param entity * @return */ @override public int save(t entity) { return mapper.inrt(entity); } /** * 说明:根据主键字段进行删除,方法参数必须包含完整的主键属性 * * @param key * @return */ @override public int delete(object key) { return mapper.deletebyprimarykey(key); } /** * 说明:根据主键更新实体全部字段,null值会被更新 * * @param entity * @return */ @override public int updateall(t entity) { return mapper.updatebyprimarykey(entity); } /** * 根据主键更新属性不为null的值 * * @param entity * @return */ @override public int updatenotnull(t entity) { return mapper.updatebyprimarykeylective(entity); } /** * 说明:根据example条件进行查询 * 重点:这个查询支持通过example类指定查询列,通过lectproperties方法指定查询列 * * @param example * @return */ @override public list<t> lectbyexample(object example) { return mapper.lectbyexample(example); }}

至此呢,我们的通用接口就开发完成了

第三步:使用通用接口

编写好我们的通用接口之后,使用就变得很方便了,只需要继承相应的通用接口或者通用接口实现类,然后进行简单的封装就行了,下面以sortinfo为例:

public interface sortinforvice extends irvice<sortinfo> {}========================分割线========================/** * 分类信息rvice * * @author:wmyskxz * @create:2018-06-15-上午 11:14 */@rvicepublic class sortinforviceimpl extends barvice<sortinfo> implements sortinforvice {}

对应到sortinfo的restful api设计,这样简单的继承就能够很好的支持,但是我们还是使用最原始的方式来创建吧

rvice接口申明

查了一些资料,问了一下实习公司的前辈老师,并且根据我们之前设计好的restful apis,我们很有必要搞一个dto层用于前后端之间的数据交互,这一层主要是对数据库的数据进行一个封装整合,也方便前后端的数据交互,所以我们首先就需要分析在dto层中应该存在哪些数据:

dto层开发

对应我们的业务逻辑和restful apis,我大概弄了下面几个dto:

① articledto:

该dto封装了文章的详细信息,对应restful api中的/api/article/{id}——通过文章id获取文章信息

/** * 文章信息类 * 说明:关联了tbl_article_info/tbl_article_content/tbl_article_category/tbl_category_info/ * tbl_article_picture五张表的基础字段 * * @author:wmyskxz * @create:2018-06-19-下午 14:13 */public class articledto { // tbl_article_info基础字段 private long id; private string title; private string summary; private boolean istop; private integer traffic; // tbl_article_content基础字段 private long articlecontentid; private string content; // tbl_category_info基础字段 private long categoryid; private string categoryname; private byte categorynumber; // tbl_article_category基础字段 private long articlecategoryid; // tbl_article_picture基础字段 private long articlepictureid; private string pictureurl; /* getter and tter */}

②articlecommentdto:

该dto封装的事文章的评论信息,对应/api/comment/article/{id}——通过文章id获取某一篇文章的全部评论信息

/** * 文章评论信息 * 说明:关联了tbl_comment和tbl_article_comment两张表的信息 * * @author:wmyskxz * @create:2018-06-19-下午 14:09 */public class articlecommentdto { // tbl_comment基础字段 private long id; // 评论id private string content; // 评论内容 private string name; // 用户自定义的显示名称 private string email; private string ip; // tbl_article_comment基础字段 private long articlecommentid; // tbl_article_comment主键 private long articleid; // 文章id /* getter and tter */}

③articlecategorydto:

该dto是封装了文章的一些分类信息,对应/admin/category/{id}——获取某一篇文章的分类信息

/** * 文章分类传输对象 * 说明:关联了tbl_article_category和tbl_category_info两张表的数据 * * @author:wmyskxz * @create:2018-06-20-上午 8:45 */public class articlecategorydto { // tbl_article_category表基础字段 private long id; // tbl_article_category表主键 private long categoryid; // 分类信息id private long articleid; // 文章id // tbl_category_info表基础字段 private string name; // 分类信息显示名称 private byte number; // 该分类下对应的文章数量 /* getter and tter */}

④articlewithpicturedto:

该dto封装了文章用于显示的基本信息,对应所有的获取文章集合的resful apis

/** * 带题图信息的文章基础信息分装类 * * @author:wmyskxz * @create:2018-06-19-下午 14:53 */public class articlewithpicturedto { // tbl_article_info基础字段 private long id; private string title; private string summary; private boolean istop; private integer traffic; // tbl_article_picture基础字段 private long articlepictureid; private string pictureurl; /* getter and tter */}

rvice接口开发

rvice层其实就是对我们业务的一个封装,所以有了restful apis文档,我们可以很轻易的写出对应的业务模块:

文章rvice

/** * 文章rvice * 说明:articleinfo里面封装了picture/content/category等信息 */public interface articlervice { void addarticle(articledto articledto); void deletearticlebyid(long id); void updatearticle(articledto articledto); void updatearticlecategory(long articleid, long categoryid); articledto getonebyid(long id); articlepicture getpicturebyarticleid(long id); list<articlewithpicturedto> listall(); list<articlewithpicturedto> listbycategoryid(long id); list<articlewithpicturedto> listlastest();}

分类rvice

/** * 分类rvice */public interface categoryrvice { void addcategory(categoryinfo categoryinfo); void deletecategorybyid(long id); void updatecategory(categoryinfo categoryinfo); void updatearticlecategory(articlecategory articlecategory); categoryinfo getonebyid(long id); list<categoryinfo> listallcategory(); articlecategorydto getcategorybyarticleid(long id);}

留言rvice

/** * 留言的rvice */public interface commentrvice { void addcomment(comment comment); void addarticlecomment(articlecommentdto articlecommentdto); void deletecommentbyid(long id); void deletearticlecommentbyid(long id); list<comment> listallcomment(); list<articlecommentdto> listallarticlecommentbyid(long id);}

系统rvice

/** * 日志/访问统计等系统相关rvice */public interface sysrvice { void addlog(syslog syslog); void addview(sysview sysview); int getlogcount(); int getviewcount(); list<syslog> listalllog(); list<sysview> listallview();}

controller 层开发

controller层简单理解的话,就是用来获取数据的,所以只要rvice层开发好了controller层就很容易,就不多说了,只是我们可以把一些公用的东西放到一个bacontroller中,比如引入rvice:

/** * 基础控制器 * * @author:wmyskxz * @create:2018-06-19-上午 11:25 */public class bacontroller { @autowired articlervice articlervice; @autowired commentrvice commentrvice; @autowired categoryrvice categoryrvice;}

然后前后台的控制器只需要继承该类就行了,这样的方式非常值得借鉴的,只是因为这个系统比较简单,所以这个bacontroll赞鸟历险记er,我看过一些源码,可以在里面弄一个通用的用于返回数据的方法,比如分页数据/错误信息之类的;

记录坑

1)mybatis中text类型的坑

按照《阿里手册》(简称)上所规范的那样,我把文章的content单独弄成了一张表并且将这个“可能很长”的字段的类型设置成了text类型,但是mybatis逆向工程自动生成的时候,却把这个text类型的字段单独给列了出去,即在生成的xml中多出了一个<resultmap>,标识id为resultmapwithblobs,mybatis这样做可能的原因还是怕这个字段太长影响前面的字段查询吧,但是操作这样的longvarchar类型的字段mybatis好像并没有集成很好,所以想要很好的操作还是需要给它弄成varchar类型才行;

在generatorconfig.xml中配置生成字段的时候加上这样一句话就好了:

<table domainobjectname="articlecontent" tablename="tbl_article_content">  <columnoverride column="content" javatype="java.lang.string" jdbctype="varchar" /> </table> 

2)拦截器中rvice注入为null的坑

在编写前台拦截器的时候,我使用@autowired注解自动注入了sysrvice系统服务rvice,但是却报nullpointer的错,发现是没有自动注入上,sysrvice为空..这是为什么呢?排除掉注解没有识别或者没有给rvice添加上注解的可能性之后,我发现好像是拦截器拦截的时候rvice并没有创建成功造成的,参考这篇文章:
https://blog.csdn.net/slgxmh/article/details/51860278,成功解决问题:

@beanpublic handlerinterceptor getforeinterceptor() { return new foreinterceptor();}@overridepublic void addinterceptors(interceptorregistry registry) { // addpathpatterns 用于添加拦截规则 // excludepathpatterns 用户排除拦截 registry.addinterceptor(new backinterceptor()).addpathpatterns("/admin/**").excludepathpatterns("/tologin"); registry.addinterceptor(getforeinterceptor()).addpathpatterns("/**").excludepathpatterns("/tologin", "/admin/**"); super.addinterceptors(registry);}

其实就是添加上@bean注解让foreinterceptor提前加载;

3)数据库sys_log表中operate_by字段的坑

当时设计表的时候,就只是单纯的想要保存一下用户使用的浏览器是什么,其实当时并不知道应该怎么获取获取到的东西又是什么,只是觉得保存浏览器20个字段够了,但后来发现这是很蠢萌的…所以不得不调整数据库的字段长度,好在只需要单方面调整数据库的字段长度就好了:

4)保存文章的方式的坑

因为我想要在数据库中保存的是md源码,而返回前台前端希望的是直接拿到html代码,这样就能很方便的输出了,所以这要怎么做呢?找到一篇参考文章:
/d/file/titlepic/566591 * markdown转html工具类 * * @author:wmyskxz * @create:2018-06-21-上午 10:09 */public class markdown2htmlutil { /** * 将markdown源码转换成html返回 * * @param markdown md源码 * @return html代码 */ public static string markdown2html(string markdown) { mutabledatat options = new mutabledatat(); options.tfrom(parremulationprofile.markdown); options.t(parr.extensions, arrays.aslist(new extension[]{tablextension.create()})); parr parr = parr.builder(options).build(); htmlrenderer renderer = htmlrenderer.builder(options).build(); node document = parr.par(markdown); return renderer.render(document); }}

使用也很简单,只需要在获取一篇文章的时候把articledto里面的md源码转成html代码再返回给前台就好了:

/** * 通过文章的id获取对应的文章信息 * * @param id * @return 自己封装好的文章信息类 */@apioperation("通过文章id获取文章信息")@getmapping("article/{id}")public articledto getarticlebyid(@pathvariable long id) { articledto articledto = articlervice.getonebyid(id); articledto.tcontent(markdown2htmlutil.markdown2html(articledto.getcontent())); return articledto;}

样式之类的交给前台就好了,搞定…

简单总结

关于统计啊日志类的controller还没有开发,resful api也没有设计,这里就先发布文章了,因为好像时间有点紧,后台的页面暂时可能开发不完,准备直接开始前台页面显示的开发(主要是自己对前端不熟悉还要学习..),这里对后台进行一个简单的总结:

其实发现当数据库设计好了,resful apis设计好了之后,后台的任务变得非常明确,开发起来也就思路很清晰了,只是自己还是缺少一些必要的经验,如对一些通用方法的抽象/层与层之间数据交互的典型设计之类的东西,特别是一些安全方面的东西,网上的资料也比较少一些,也是自己需要学习的地方;

本文发布于:2023-04-05 15:32:19,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/be646ebdcba07bb7462b18ebd7343442.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:springboot配置tomcat配置乱码(配置乱码原因和对应解决法).doc

本文 PDF 下载地址:springboot配置tomcat配置乱码(配置乱码原因和对应解决法).pdf

标签:字段   文章   方法   接口
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图