老师,遇到访问问题。
来源:13-10 替代docBase配置以实现图片的加载
Tom_Gao
2018-10-11
我在springboot的配置文件里添加了“server.address=本机ip”,然后用本机ip替换localhost去访问,在没替换之前这个访问路径:localhost:80/o2o/frontend/index能访问到,但是localhost替换成本机ip之后,所有页面都不显示,但代码能加载出来。控制台也没有保存。
写回答
1回答
-
翔仔
2018-10-13
同学好,咱们配置里面没有这个选项吧?为什么要用这个选项呢?你实际访问项目直接ip+端口就能访问到了呀
server.port=8080 #加入/o2o前缀 server.context-path=/o2o #DataSource #数据库驱动 jdbc.driver=com.mysql.jdbc.Driver #数据库链接 jdbc.url=jdbc:mysql://120.24.64.163:3306/o2o?useUnicode=true&characterEncoding=utf8&useSSL=false #数据库用户名(已加密) jdbc.username=zCKAAEaFQUI= #数据库密码(已加密) jdbc.password=rGbHa/zmhhg= #Mybatis mybatis_config_file=mybatis-config.xml mapper_path=/mapper/**.xml type_alias_package=com.imooc.entity #Redis配置 redis.hostname=127.0.0.1 redis.port=6379 redis.pool.maxActive=100 redis.pool.maxIdle=20 redis.pool.maxWait=3000 redis.pool.testOnBorrow=true #Kaptcha的配置 kaptcha.border=no kaptcha.textproducer.font.color=red kaptcha.image.width=135 kaptcha.textproducer.char.string=ACDEFHKPRSTWX345679 kaptcha.image.height=50 kaptcha.textproducer.font.size=43 kaptcha.noise.color=black kaptcha.textproducer.char.length=4 kaptcha.textproducer.font.names=Arial #Path管理 win.base.path=D:/projectdev/image linux.base.path=/Users/baidu/work/image shop.relevant.path=/upload/images/item/shop/ headline.relevant.path=/upload/images/item/headtitle/ shopcategory.relevant.path=/upload/images/item/shopcategory/ #微信相关 wechat.appid=wxd7f6c5b8899fba83 wechat.prefix=https://open.weixin.qq.com/connect/oauth2/authorize?appid=${wechat.appid}&redirect_uri= wechat.middle=&response_type=code&scope=snsapi_userinfo&state= wechat.suffix=#wechat_redirect wechat.auth.url=http://o2o.yitiaojieinfo.com/o2o/shopadmin/addshopauthmap wechat.login.url=http://o2o.yitiaojieinfo.com/o2o/wechatlogin/logincheck wechat.exchange.url=http://o2o.yitiaojieinfo.com/o2o/shopadmin/exchangeaward wechat.productmap.url=http://o2o.yitiaojieinfo.com/o2o/shopadmin/adduserproductmap
032018-10-14
相似问题