chenyongxing 7 سال پیش
والد
کامیت
19ec296487

+ 0 - 21
editor.iml

@ -1,31 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
  <component name="FacetManager">
    <facet type="jpa" name="JPA">
      <configuration>
        <setting name="validation-enabled" value="true" />
        <setting name="provider-name" value="" />
        <datasource-mapping />
      </configuration>
    </facet>
    <facet type="hibernate" name="Hibernate">
      <configuration>
        <datasource-map>
          <unit-entry name="hibernate.cfg.xml" value="7c86563a-194b-4ab7-8f75-93ece9ca94cc" />
        </datasource-map>
        <naming-strategy-map />
        <deploymentDescriptor name="hibernate.cfg.xml" url="file://$MODULE_DIR$/src/main/resources/hibernate.cfg.xml" />
      </configuration>
    </facet>
    <facet type="web" name="Web">
      <configuration>
        <webroots>
          <root url="file://$MODULE_DIR$/src/main/webapp" relative="/" />
        </webroots>
        <sourceRoots>
          <root url="file://$MODULE_DIR$/src/main/java" />
          <root url="file://$MODULE_DIR$/src/main/resources" />
        </sourceRoots>
      </configuration>
    </facet>
  </component>
@ -35,7 +15,6 @@
    <content url="file://$MODULE_DIR$">
      <sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
      <sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" />
      <sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
      <excludeFolder url="file://$MODULE_DIR$/target" />
    </content>
    <orderEntry type="inheritedJdk" />

+ 86 - 5
src/main/java/com/yihu/editor/controller/ArticleController.java

@ -1,16 +1,31 @@
package com.yihu.editor.controller;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.yihu.editor.entity.SystemDictItem;
import com.yihu.editor.entity.YdfHealthEduArticle;
import com.yihu.editor.service.ArticleService;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.*;
import javax.validation.Valid;
import java.util.Date;
import java.util.List;
import java.util.UUID;
/**
 * Created by Administrator on 2017/6/9 0009.
 */
@Controller
public class ArticleController {
public class ArticleController extends BaseController{
    @Autowired
    private ArticleService articleService;
    @RequestMapping(value = "/index",method = RequestMethod.GET)
    public String toIndex(){
@ -30,6 +45,72 @@ public class ArticleController {
    @RequestMapping(value = "/toEdit",method = RequestMethod.GET)
    public String toEdit(@RequestParam(value = "id")String id,ModelMap modelMap){
        modelMap.addAttribute("id", id);
        return "edit";
        return "add";
    }
    /**
     * 初始化列表页
     * @param type 意见反馈的类别
     * @param identity 身份
     * @param status 状态
     * @param page
     * @param rows
     * @return
     */
    @RequestMapping(value = "/list", method = RequestMethod.POST)
    @ResponseBody
    public String list(
            @RequestParam(required = false,defaultValue = "-1") int type,
            @RequestParam(required = false,defaultValue = "-1") int identity,
            @RequestParam(required = false,defaultValue = "-1") int status,
            @RequestParam(value = "page",defaultValue = "1") int page,
            @RequestParam(value = "rows",defaultValue = "15") int rows) {
        try {
            Page<YdfHealthEduArticle> res = articleService.findFeedback(page,rows,type,identity,status);
            return write(200, "操作成功", page, rows, res);
        } catch (Exception ex) {
            error(ex);
            return error(-1, "操作失败");
        }
    }
    /**
     * 获取文章类型
     * @return
     */
    @RequestMapping(value = "/getArticleType")
    @ResponseBody
    public String getArticleType() throws JsonProcessingException {
        List<SystemDictItem> systemDictItems = articleService.findHealthEduArticleTypeList();
        ObjectMapper mapper = new ObjectMapper();
        return mapper.writeValueAsString(systemDictItems);
        //return write(200, "查询成功!", "data", systemDictItems);
    }
    @RequestMapping(value = "/save", method = RequestMethod.POST)
    @ResponseBody
    public String save(@ModelAttribute @Valid YdfHealthEduArticle article){
        if(StringUtils.isBlank(article.getId())){
            article.setId(UUID.randomUUID().toString().replaceAll("-",""));
        }
        Date date = new Date();
        if(null==article.getModifyDate()){
            article.setModifyDate(date);
        }
        if(null==article.getCreateDate()){
            article.setCreateDate(date);
        }
        article.setStatus(0);//设置状态
        article.setType(0);//设置成待审核状态
        articleService.save(article);
        return write(200, "保存成功");
    }
    @RequestMapping(value = "/del")
    @ResponseBody
    public String del(@RequestParam(value = "id")String id){
        articleService.delete(id);
        return write(200, "删除成功");
    }
}

+ 0 - 85
src/main/java/com/yihu/editor/controller/EditorController.java

@ -1,85 +0,0 @@
package com.yihu.editor.controller;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.yihu.editor.entity.SystemDictItem;
import com.yihu.editor.entity.YdfHealthEduArticle;
import com.yihu.editor.service.FeedbackService;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import javax.validation.Valid;
import java.util.*;
/**
 * Created by Administrator on 2017/6/11 0011.
 */
@Controller
@RequestMapping(value = "admin/feedback")
public class EditorController extends BaseController{
    @Autowired
    private FeedbackService feedbackService;
    /**
     * 初始化列表页
     * @param type 意见反馈的类别
     * @param identity 身份
     * @param status 状态
     * @param page
     * @param rows
     * @return
     */
    @RequestMapping(value = "/list", method = RequestMethod.POST)
    @ResponseBody
    public String list(
            @RequestParam(required = false,defaultValue = "-1") int type,
            @RequestParam(required = false,defaultValue = "-1") int identity,
            @RequestParam(required = false,defaultValue = "-1") int status,
            @RequestParam(value = "page",defaultValue = "1") int page,
            @RequestParam(value = "rows",defaultValue = "15") int rows) {
        try {
            Page<YdfHealthEduArticle> res = feedbackService.findFeedback(page,rows,type,identity,status);
            return write(200, "操作成功", page, rows, res);
        } catch (Exception ex) {
            error(ex);
            return error(-1, "操作失败");
        }
    }
    /**
     * 获取文章类型
     * @return
     */
    @RequestMapping(value = "/getArticleType")
    @ResponseBody
    public String getArticleType() throws JsonProcessingException {
        List<SystemDictItem> systemDictItems = feedbackService.findHealthEduArticleTypeList();
        ObjectMapper mapper = new ObjectMapper();
        return mapper.writeValueAsString(systemDictItems);
        //return write(200, "查询成功!", "data", systemDictItems);
    }
    @RequestMapping(value = "/save", method = RequestMethod.POST)
    @ResponseBody
    public String save(@ModelAttribute @Valid YdfHealthEduArticle article){
        if(StringUtils.isBlank(article.getId())){
            article.setId(UUID.randomUUID().toString().replaceAll("-",""));
        }
        Date date = new Date();
        if(null==article.getModifyDate()){
            article.setModifyDate(date);
        }
        if(null==article.getCreateDate()){
            article.setCreateDate(date);
        }
        article.setStatus(0);//设置状态
        article.setType(0);//设置成待审核状态
        feedbackService.save(article);
        return write(200, "保存成功");
    }
}

+ 0 - 106
src/main/java/com/yihu/editor/controller/UserController.java

@ -1,106 +0,0 @@
package com.yihu.editor.controller;
import com.yihu.editor.dao.UserDao;
import com.yihu.editor.entity.User;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import java.math.BigDecimal;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.List;
@Controller
public class UserController {
    @Autowired
    private UserDao userDao;
    @RequestMapping("/getName")
    @ResponseBody
    public String getByName(String name) {
        List<User> userList = userDao.findByName(name);
        if (userList != null && userList.size()!=0) {
            return "The user length is: " + userList.size();
        }
        return "user " + name + " is not exist.";
    }
    @RequestMapping("/getSex")
    @ResponseBody
    public String getBySex(char sex) {
        List<User> userList = userDao.findBySex(sex);
        if (userList != null && userList.size()!=0) {
            return "The user length is: " + userList.size();
        }
        return "user " + sex + " is not exist.";
    }
    @RequestMapping("/getBirthday")
    @ResponseBody
    public String findByBirthday(String birthday) {
        System.out.println("birthday:"+birthday);
        SimpleDateFormat formate=new SimpleDateFormat("yyyy-MM-dd");
        List<User> userList = null;
        try {
            userList = userDao.findByBirthday(formate.parse(birthday));
        } catch (ParseException e) {
            e.printStackTrace();
        }
        if (userList != null && userList.size()!=0) {
            return "The user length is: " + userList.size();
        }
        return "user " + birthday + " is not exist.";
    }
    @RequestMapping("/getSendtime")
    @ResponseBody
    public String findBySendtime(String sendtime) {
        System.out.println("sendtime:"+sendtime);
        SimpleDateFormat formate=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        List<User> userList = null;
        try {
            userList = userDao.findBySendtime(formate.parse(sendtime));
        } catch (ParseException e) {
            e.printStackTrace();
        }
        if (userList != null && userList.size()!=0) {
            return "The user length is: " + userList.size();
        }
        return "user " + sendtime + " is not exist.";
    }
    @RequestMapping("/getPrice")
    @ResponseBody
    public String findByPrice(BigDecimal price) {
        List<User> userList = null;
        userList = userDao.findByPrice(price);
        if (userList != null && userList.size()!=0) {
            return "The user length is: " + userList.size();
        }
        return "user " + price + " is not exist.";
    }
    @RequestMapping("/getFloatprice")
    @ResponseBody
    public String findFloatprice(float floatprice) {
        List<User> userList = null;
        userList = userDao.findByFloatprice(floatprice);
        if (userList != null && userList.size()!=0) {
            return "The user length is: " + userList.size();
        }
        return "user " + floatprice + " is not exist.";
    }
    @RequestMapping("/getDoubleprice")
    @ResponseBody
    public String findByPrice(double doubleprice) {
        List<User> userList = null;
        userList = userDao.findByDoubleprice(doubleprice);
        if (userList != null && userList.size()!=0) {
            return "The user length is: " + userList.size();
        }
        return "user " + doubleprice + " is not exist.";
    }
}

+ 5 - 0
src/main/java/com/yihu/editor/dao/ArticleDao.java

@ -3,6 +3,7 @@ package com.yihu.editor.dao;
import com.yihu.editor.entity.SystemDictItem;
import com.yihu.editor.entity.YdfHealthEduArticle;
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
import org.springframework.data.jpa.repository.Modifying;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.PagingAndSortingRepository;
@ -15,4 +16,8 @@ public interface ArticleDao extends PagingAndSortingRepository<YdfHealthEduArtic
    @Query("select a from SystemDictItem a where a.dict =?1 order by a.sort")
    List<SystemDictItem> findByDict(String dict);
    @Modifying
    @Query("update YdfHealthEduArticle a set a.status = -1 where a.id = ?1 ")
    void delete(String id);
}

+ 0 - 21
src/main/java/com/yihu/editor/dao/UserDao.java

@ -1,21 +0,0 @@
package com.yihu.editor.dao;
import com.yihu.editor.entity.User;
import org.springframework.data.repository.CrudRepository;
import javax.transaction.Transactional;
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
/**
 * Created by Administrator on 2017/6/9 0009.
 */
@Transactional
public interface UserDao extends CrudRepository<User, Integer> {
    public List<User> findByName(String name);
    public List<User> findBySex(char sex);
    public List<User> findByBirthday(Date birthday);
    public List<User> findBySendtime(Date sendtime);
    public List<User> findByPrice(BigDecimal price);
    public List<User> findByFloatprice(float floatprice);
    public List<User> findByDoubleprice(double doubleprice);
}

+ 0 - 119
src/main/java/com/yihu/editor/entity/User.java

@ -1,119 +0,0 @@
package com.yihu.editor.entity;
import javax.persistence.*;
import java.math.BigDecimal;
import java.util.Date;
/**
 * Created by Administrator on 2017/6/9 0009.
 */
@Entity
@Table(name = "user")
public class User {
    @Id
    @GeneratedValue(strategy = GenerationType.AUTO)
    private int id;
    @Column(name = "name", nullable = true, length = 30)
    private String name;
    @Column(name = "height", nullable = true, length = 10)
    private int height;
    @Column(name = "sex", nullable = true, length = 2)
    private char sex;
    @Temporal(TemporalType.DATE)
    private Date birthday;
    @Temporal(TemporalType.TIMESTAMP)
    private Date sendtime; // 日期类型,格式:yyyy-MM-dd HH:mm:ss
    @Column(name = "price", nullable = true, length = 10)
    private BigDecimal price;
    @Column(name = "floatprice", nullable = true, length = 10)
    private float floatprice;
    @Column(name = "doubleprice", nullable = true, length = 10)
    private double doubleprice;
    public Date getSendtime() {
        return sendtime;
    }
    public void setSendtime(Date sendtime) {
        this.sendtime = sendtime;
    }
    public BigDecimal getPrice() {
        return price;
    }
    public void setPrice(BigDecimal price) {
        this.price = price;
    }
    public float getFloatprice() {
        return floatprice;
    }
    public void setFloatprice(float floatprice) {
        this.floatprice = floatprice;
    }
    public double getDoubleprice() {
        return doubleprice;
    }
    public void setDoubleprice(double doubleprice) {
        this.doubleprice = doubleprice;
    }
    public User() { }
    public char getSex() {
        return sex;
    }
    public void setSex(char sex) {
        this.sex = sex;
    }
    public Date getBirthday() {
        return birthday;
    }
    public void setBirthday(Date birthday) {
        this.birthday = birthday;
    }
    public User(int id) {
        this.id = id;
    }
    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public int getHeight() {
        return height;
    }
    public void setHeight(int height) {
        this.height = height;
    }
}

+ 0 - 32
src/main/java/com/yihu/editor/entity/YdfHealthEduArticle.hbm.xml

@ -1,32 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-mapping PUBLIC
    "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
    "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
    <class name="com.yihu.editor.entity.YdfHealthEduArticle" table="ydf_health_edu_article" schema="" catalog="ydf">
        <id name="id" column="id"/>
        <property name="title" column="title"/>
        <property name="url" column="url"/>
        <property name="contentFirst" column="content_first"/>
        <property name="content" column="content"/>
        <property name="keyword" column="keyword"/>
        <property name="modifyDate" column="modify_date"/>
        <property name="modifyUser" column="modify_user"/>
        <property name="createUserName" column="create_user_name"/>
        <property name="createUser" column="create_user"/>
        <property name="createDate" column="create_date"/>
        <property name="status" column="status"/>
        <property name="images" column="images"/>
        <property name="reviewedDate" column="reviewed_date"/>
        <property name="reviewedUser" column="reviewed_user"/>
        <property name="reviewedUserName" column="reviewed_user_name"/>
        <property name="lookNum" column="look_num"/>
        <property name="delDate" column="del_date"/>
        <property name="typeName" column="type_name"/>
        <property name="type" column="type"/>
        <property name="delUserName" column="del_user_name"/>
        <property name="delUser" column="del_user"/>
        <property name="saasId" column="saas_id"/>
    </class>
</hibernate-mapping>

+ 0 - 64
src/main/java/com/yihu/editor/service/FeedbackService.java

@ -1,64 +0,0 @@
package com.yihu.editor.service;
import com.yihu.editor.dao.ArticleDao;
import com.yihu.editor.entity.SystemDictItem;
import com.yihu.editor.entity.YdfHealthEduArticle;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageRequest;
import org.springframework.data.domain.Sort;
import org.springframework.data.jpa.domain.Specification;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import org.springside.modules.persistence.DynamicSpecifications;
import org.springside.modules.persistence.SearchFilter;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
 * Created by Administrator on 2017/6/11 0011.
 */
@Service
@Transactional
public class FeedbackService {
    @Autowired
    private ArticleDao articleDao;
    public Page<YdfHealthEduArticle> findFeedback(int page, int rows, int type, int identity, int status) {
        if (page <= 0) {
            page = 1;
        }
        if (rows <= 0) {
            rows = 15;
        }
        // 排序
        Sort sort = new Sort(Sort.Direction.DESC, "id");
        // 分页信息
        PageRequest pageRequest = new PageRequest(page - 1, rows, sort);
        // 设置查询条件
        Map<String, SearchFilter> filters = new HashMap<>();
        if (type!=-1) {
            filters.put("type", new SearchFilter("type", SearchFilter.Operator.EQ, type));
        }
        if (identity!=-1) {
            filters.put("identity", new SearchFilter("identity", SearchFilter.Operator.EQ, identity));
        }
        if (status!=-1) {
            filters.put("status", new SearchFilter("status", SearchFilter.Operator.EQ, status));
        }
        Specification<YdfHealthEduArticle> spec = DynamicSpecifications.bySearchFilter(filters.values(), YdfHealthEduArticle.class);
        return articleDao.findAll(spec, pageRequest);
    }
    public void save(YdfHealthEduArticle article){
        articleDao.save(article);
    }
    public List<SystemDictItem> findHealthEduArticleTypeList() {
        return articleDao.findByDict("4");
    }
}

+ 0 - 14
src/main/resources/hibernate.cfg.xml

@ -1,14 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
    "-//Hibernate/Hibernate Configuration DTD//EN"
    "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
  <session-factory>
    <property name="connection.url">jdbc:mysql://localhost:3306/ydf</property>
    <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
      <mapping class="com.yihu.editor.entity.YdfHealthEduArticle"/>
      <mapping resource="com/yihu/editor/entity/YdfHealthEduArticle.hbm.xml"/>
      <!-- DB schema will be updated if needed -->
    <!-- <property name="hbm2ddl.auto">update</property> -->
  </session-factory>
</hibernate-configuration>

+ 44 - 5
src/main/webapp/pages/edit_list.jsp

@ -27,7 +27,15 @@
    </body>
    <script>
        function edit(id){
            window.location.href=""
            //iframe层
            parent.layer.open({
                type: 2,
                title: '编辑页',
                shadeClose: true,
                shade: 0.8,
                area: ['90%', '90%'],
                content: 'toEdit?id="+id;' //iframe的url
            });
        }
        $("#div_feedback_list").ligerGrid({
@ -41,21 +49,52 @@
                    display: '操作', name: 'operator',
                    render: function (row) {
                        var html = '';
                        html += '<a  href="javascript:void(0)" onclick="edit(\''+row.id+'\')">查看</a>';
                        html += '<a  onclick="edit(\''+row.id+'\')">查看</a><a style="margin-left: 15px" onclick="del(\''+row.id+'\')">删除</a>';
                        return html;
                    }
                }
            ],
            url: "admin/feedback/list",
            url: "list",
            pageSize: 20,
            width: '100%',
            height: '99%',
            checkbox: true
        });
        $("#btn_search").click(function(){
            window.location.href="";
            parent.layer.open({
                type: 2,
                title: '添加页',
                shadeClose: true,
                shade: 0.8,
                area: ['90%', '90%'],
                content: 'toAdd' //iframe的url
            });
        });
        function del(id){
            //询问框
            parent.layer.confirm('确定删除该条记录吗?', {
                btn: ['删除','取消'], //按钮
                shade: false //不显示遮罩
            }, function(){
                //删除
                $.ajax({
                    url:"del?id="+id,
                    success: function (data) {
                        var json = eval('(' + data + ')');
                        if(json.status=='200'){
                            parent.layer.msg('删除成功', {icon: 1});
                        }else{
                            parent.layer.msg('服务器忙', {icon: 2});
                        }
                        $("#div_feedback_list").ligerGrid().reload();
                    }
                })
            }, function(){
            });
        }
    </script>
</html>

+ 0 - 6
src/main/webapp/pages/index.jsp

@ -61,12 +61,6 @@
                        <li>
                            <a class="J_menuItem" href="toList" data-index="0">列表</a>
                        </li>
                        <li>
                            <a class="J_menuItem" href="toAdd" data-index="0">新增</a>
                        </li>
                        <li>
                            <a class="J_menuItem" href="toEdit" data-index="0">编辑</a>
                        </li>
                    </ul>
                </li>