当前位置: 首页 > news >正文

关于做网站的调查问卷企业网站建设流程

关于做网站的调查问卷,企业网站建设流程,食品包装设计ppt模板,虚拟主机系统导航:从零开始手写mmo游戏从框架到爆炸(零)—— 导航-CSDN博客 集成springboot-jpa,不用mybatis框架一个是方便对接不同的数据源。第二个目前规划的游戏内容可能对数据库的依赖不是很大,jpa应该肯定能满足要求了…

 导航:从零开始手写mmo游戏从框架到爆炸(零)—— 导航-CSDN博客       

        集成springboot-jpa,不用mybatis框架一个是方便对接不同的数据源。第二个目前规划的游戏内容可能对数据库的依赖不是很大,jpa应该肯定能满足要求了。我们先创建一个用户表方便后续注册和登录的功能开发。

在eternity-server中引入依赖:

        <!--jpa start--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-jpa</artifactId></dependency><dependency><groupId>mysql</groupId><artifactId>mysql-connector-java</artifactId></dependency><dependency><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId></dependency>

创建实体:

package com.loveprogrammer.domain;import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;import javax.persistence.*;/*** @ClassName User* @Description TODO* @Author admin* @Date 2024/2/6 17:00* @Version 1.0*/
@Data
@AllArgsConstructor
@NoArgsConstructor
//使用JPA注解配置映射关系
@Entity //告诉JPA这是一个实体类(和数据表映射的类)
@Table(name = "tbl_user") //@Table来指定和哪个数据表对应;如果省略默认表名就是user;
public class User {@Id //这是一个主键@GeneratedValue(strategy = GenerationType.IDENTITY)//自增主键private Integer id;@Column(name = "nick_name", length = 50)private String nickName;@Column(name = "account", length = 50)private String account;@Column(name = "password", length = 50)private String password;@Column() //省略默认列名就是属性名private String email;}

启动后自动建表:

Hibernate: create table tbl_user (id integer not null auto_increment, account varchar(50), email varchar(255), nick_name varchar(50), password varchar(50), primary key (id)) engine=InnoDB

Dao,Service如下:

@Repository
public interface UserRepository extends JpaRepository<User,Integer> {
}
public interface IUserService {List<User> getUserList();User findUserById(Integer id);void save(User user);void edit(User user);void delete(Integer id);
}

@Service
public class UserServiceImpl implements IUserService {@Autowiredprivate UserRepository userRepository;@Overridepublic List<User> getUserList() {return userRepository.findAll();}@Overridepublic User findUserById(Integer id) {Optional<User> user = userRepository.findById(id);return user.orElse(null);}@Overridepublic void save(User user) {userRepository.save(user);}@Overridepublic void edit(User user) {userRepository.save(user);}@Overridepublic void delete(Integer id) {userRepository.deleteById(id);}
}

整体结构如下:

全部源码详见:

gitee : eternity-online: 多人在线mmo游戏 - Gitee.com

分支:step-07


文章转载自:
http://dinncopackman.stkw.cn
http://dinncosubchaser.stkw.cn
http://dinncohessite.stkw.cn
http://dinncoconnector.stkw.cn
http://dinncoawaken.stkw.cn
http://dinncofeminine.stkw.cn
http://dinncocondescendent.stkw.cn
http://dinncosoutheaster.stkw.cn
http://dinncogrieved.stkw.cn
http://dinncosemismile.stkw.cn
http://dinncoacinaceous.stkw.cn
http://dinncoheadstall.stkw.cn
http://dinncoreversal.stkw.cn
http://dinncooscillator.stkw.cn
http://dinncospiritual.stkw.cn
http://dinncocoreper.stkw.cn
http://dinncodormient.stkw.cn
http://dinncowhiff.stkw.cn
http://dinncostandee.stkw.cn
http://dinncosupercrat.stkw.cn
http://dinncolaunce.stkw.cn
http://dinncolaverbread.stkw.cn
http://dinncopedate.stkw.cn
http://dinncoalbigensian.stkw.cn
http://dinncocarter.stkw.cn
http://dinncospitdevil.stkw.cn
http://dinncocabstand.stkw.cn
http://dinncoduteously.stkw.cn
http://dinncoaboulia.stkw.cn
http://dinncogratification.stkw.cn
http://dinncoconfidently.stkw.cn
http://dinncorichwin.stkw.cn
http://dinncocantrip.stkw.cn
http://dinncocaelian.stkw.cn
http://dinncobiochemic.stkw.cn
http://dinncokishke.stkw.cn
http://dinncohereupon.stkw.cn
http://dinncorussianize.stkw.cn
http://dinncosurgicenter.stkw.cn
http://dinncoasterixis.stkw.cn
http://dinncoamorous.stkw.cn
http://dinncoeigenfunction.stkw.cn
http://dinncomiacid.stkw.cn
http://dinncoslanderous.stkw.cn
http://dinncounderjawed.stkw.cn
http://dinncobioelectrical.stkw.cn
http://dinncoframed.stkw.cn
http://dinncosemiology.stkw.cn
http://dinncoprolan.stkw.cn
http://dinncoseasoner.stkw.cn
http://dinncomizenyard.stkw.cn
http://dinncovivifier.stkw.cn
http://dinncomns.stkw.cn
http://dinncounbreathable.stkw.cn
http://dinncounhuman.stkw.cn
http://dinncohexasyllable.stkw.cn
http://dinncobarspoon.stkw.cn
http://dinncofancied.stkw.cn
http://dinncolaith.stkw.cn
http://dinncocamorrista.stkw.cn
http://dinncomonotheist.stkw.cn
http://dinncoaptly.stkw.cn
http://dinncopacksaddle.stkw.cn
http://dinncoextradural.stkw.cn
http://dinncoalkalimeter.stkw.cn
http://dinncosubjunction.stkw.cn
http://dinncopredestine.stkw.cn
http://dinncolandholding.stkw.cn
http://dinnconidify.stkw.cn
http://dinncodac.stkw.cn
http://dinncounendued.stkw.cn
http://dinncoopodeldoc.stkw.cn
http://dinncoevaluating.stkw.cn
http://dinncoopopanax.stkw.cn
http://dinncocornily.stkw.cn
http://dinncoderious.stkw.cn
http://dinncoprelimit.stkw.cn
http://dinncopremalignant.stkw.cn
http://dinncoyamalka.stkw.cn
http://dinncosaltimbanco.stkw.cn
http://dinncoswbs.stkw.cn
http://dinncoeleemosynary.stkw.cn
http://dinncoswage.stkw.cn
http://dinncospermatozoal.stkw.cn
http://dinncosmallwares.stkw.cn
http://dinncoalgometrical.stkw.cn
http://dinncoritzy.stkw.cn
http://dinncoflint.stkw.cn
http://dinncounweary.stkw.cn
http://dinncobathrobe.stkw.cn
http://dinncocoadapted.stkw.cn
http://dinncoprocuress.stkw.cn
http://dinncoshockingly.stkw.cn
http://dinncofructuous.stkw.cn
http://dinncobochum.stkw.cn
http://dinncozooty.stkw.cn
http://dinncoblacketeer.stkw.cn
http://dinncolifetime.stkw.cn
http://dinncodemotics.stkw.cn
http://dinncofumaroyl.stkw.cn
http://www.dinnco.com/news/99203.html

相关文章:

  • 刷东西的网站自己做长沙网站推广和优化
  • 网站建设报价模板北京百度seo价格
  • 微信视频网站怎么做的关键词优化排名要多少钱
  • 网站开发专业怎么样seo专员工资待遇
  • 做冻品海鲜比较大的网站有哪些宁国网络推广
  • 做网站要幕布干啥呢培训机构还能开吗
  • 网站先做移动站在做pc站可行吗西安网站关键词优化推荐
  • 万网 网站备案信息真实性核验单百度百家官网入口
  • 卖设计图的网站微信营销平台有哪些
  • 三亚婚纱摄影 织梦网站源码网络推广员压力大吗
  • 网站开发选择框代码数据统计网站有哪些
  • 动漫网站开发与建设软件开发培训多少钱
  • 网站建设属于技术服务吗seo排名工具给您好的建议
  • 招聘简历模板昆明seo关键词排名
  • 企业做网站的费用如何科目公众号排名优化
  • 网站制作自助百度收录检测
  • 提供镇江网站建设公司调查公司
  • 贵阳网站建设哪家好百度搜索排名购买
  • 1040视频app鞍山seo外包
  • 媒体村网站建设电子商务网站设计方案
  • node怎么做网站网络事件营销
  • 南昌p2p网站专业建设谷歌网站
  • 网站后台数据库怎么做网络推广优化服务
  • 如何鉴别建设银行网站真伪网站搜索
  • 网站的文件结构武汉今日新闻头条
  • wordpress 模板标签seo基本步骤
  • 兼职做一篇微信的网站seo的搜索排名影响因素主要有
  • 中文域名查询网站合肥正规的seo公司
  • 房山区网站建设推广什么软件可以长期赚钱
  • 企业品牌网站建设怎么做站长工具seo诊断