留言板

How to insert data in User table through own portlet ??

piyush liferay,修改在11 年前。

How to insert data in User table through own portlet ??

Junior Member 帖子: 40 加入日期: 13-1-2 最近的帖子
Hello ,

How to insert data in User table which is already present in liferay..

can you suggest me best solution for that...
Siby Mathew,修改在11 年前。

RE: How to insert data in User table through own portlet ??

Expert 帖子: 268 加入日期: 11-3-4 最近的帖子
Use methods from UserLocalServiceUtil.java like addUser, updateUser etc.

Thanks,
Siby
thumbnail
Hitoshi Ozawa,修改在11 年前。

RE: How to insert data in User table through own portlet ??

Liferay Legend 帖子: 7942 加入日期: 10-3-24 最近的帖子
Use UserLocalServiceImpl.addUser

http://docs.liferay.com/portal/6.1/javadocs-all/com/liferay/portal/service/impl/UserLocalServiceImpl.html

OR

UserLocalServiceUtil.AddUser

http://docs.liferay.com/portal/6.1/javadocs/com/liferay/portal/service/UserLocalServiceUtil.html
piyush liferay,修改在11 年前。

RE: How to insert data in User table through own portlet ??

Junior Member 帖子: 40 加入日期: 13-1-2 最近的帖子
Hitoshi Ozawa:
Use UserLocalServiceImpl.addUser

http://docs.liferay.com/portal/6.1/javadocs-all/com/liferay/portal/service/impl/UserLocalServiceImpl.html

OR

UserLocalServiceUtil.AddUser

http://docs.liferay.com/portal/6.1/javadocs/com/liferay/portal/service/UserLocalServiceUtil.html


Liferay User Class contain some of few fields but i have more fields so i have to insert some field in User Class and Some Field in Own Class..

so how to insert such entries in both the User and Own class.

Thanks..
thumbnail
Jitendra Rajput,修改在11 年前。

RE: How to insert data in User table through own portlet ??

Liferay Master 帖子: 875 加入日期: 11-1-7 最近的帖子
For the extra fields you can create custom fields .
http://www.liferay.com/community/wiki/-/wiki/Main/Custom+fields
thumbnail
Hitoshi Ozawa,修改在11 年前。

RE: How to insert data in User table through own portlet ??

Liferay Legend 帖子: 7942 加入日期: 10-3-24 最近的帖子
For you own fields, just use expando

http://www.liferay.com/community/wiki/-/wiki/Main/Developing+with+Expando
piyush liferay,修改在11 年前。

RE: How to insert data in User table through own portlet ??

Junior Member 帖子: 40 加入日期: 13-1-2 最近的帖子
can we insert data without using expando ??
thumbnail
Hitoshi Ozawa,修改在11 年前。

RE: How to insert data in User table through own portlet ??

Liferay Legend 帖子: 7942 加入日期: 10-3-24 最近的帖子
can we insert data without using expando ??


Insert data where? You need a database table column to enter data. Which column do you want to enter you data?
piyush liferay,修改在11 年前。

RE: How to insert data in User table through own portlet ??

Junior Member 帖子: 40 加入日期: 13-1-2 最近的帖子
i have column for inserting a data but not using expando..

i am inserting a data normally ..

can we insert data in database ??
thumbnail
Hitoshi Ozawa,修改在11 年前。

RE: How to insert data in User table through own portlet ??

Liferay Legend 帖子: 7942 加入日期: 10-3-24 最近的帖子
have column for inserting a data but not using expando..


So, use your api to enter data into your column. I'm not sure what the problem is. If you created a column, creating a method to insert/change/delete data from that column is dependent on you code not liferay's.
piyush liferay,修改在11 年前。

RE: How to insert data in User table through own portlet ??

Junior Member 帖子: 40 加入日期: 13-1-2 最近的帖子
Hitoshi Ozawa:
have column for inserting a data but not using expando..


So, use your api to enter data into your column. I'm not sure what the problem is. If you created a column, creating a method to insert/change/delete data from that column is dependent on you code not liferay's.



Sir i write down my complete problem here ....

i have fileds like :-

name,email,password,mobileno,address etc.

but in User class contain only name,email and password field so i want to insert mobileno and address field in my class Register

so give me the solution for that problem... but i am not using a expando.
Siby Mathew,修改在11 年前。

RE: How to insert data in User table through own portlet ??

Expert 帖子: 268 加入日期: 11-3-4 最近的帖子
Hi Piyush,
The easiest way to achieve this is to store it in the expando.
But if you really want another table, use servicebuilder to generate a new table. All the CRUD operations will be autogenerated by Liferay.
After inserting the user, you can use these APIs to update your custom table.

Thanks,
Siby
piyush liferay,修改在11 年前。

RE: How to insert data in User table through own portlet ??

Junior Member 帖子: 40 加入日期: 13-1-2 最近的帖子
but for inserting a user i want to require a userId which is autoincrement so how can i do ...
thumbnail
Hitoshi Ozawa,修改在11 年前。

RE: How to insert data in User table through own portlet ??

Liferay Legend 帖子: 7942 加入日期: 10-3-24 最近的帖子
but for inserting a user i want to require a userId which is autoincrement so how can i do ...


The subject of this thread has nothing to do with the question you're asking now.
Close this thread and create a new thread with the question you've just asked - "How to modify liferay addUser method to autoincrement userId"
thumbnail
Bharamani P Tashildar,修改在8 年前。

RE: How to insert data in User table through own portlet ??

Junior Member 帖子: 48 加入日期: 14-8-27 最近的帖子
HI friends,,

The same problem i am facing...

for user_ there are two methods available that we can use

1.. UserLocalServiceUtil.addUser(user);
2..UserLocalServiceUtil.addUser(creatorUserId, companyId, autoPassword, password1, password2, autoScreenName, screenName,
emailAddress, facebookId, openId, locale, firstName, middleName, lastName, prefixId, suffixId, male,
birthdayMonth, birthdayDay, birthdayYear, getTitle(null), groupIds, organizationIds, roleIds,
userGroupIds, sendEmail, serviceContext);

Both i tried but no result plz help me to solve this..............

I have firstName ,lastName, password, emailId, role and autogenerated userId in my custom portlet......
I want to store it in User_table

Thanks & Regards
Bharamani Tashildar
thumbnail
Harish Kumar,修改在8 年前。

RE: How to insert data in User table through own portlet ??

Expert 帖子: 483 加入日期: 10-7-31 最近的帖子
Hi

Data should be saved in user_ table. Following is the code snippet you can try


user = UserLocalServiceUtil.addUser(themeDisplay.getUserId(),
					themeDisplay.getCompanyId(), false, password, password, false,
					screenName, email, 0L, StringPool.BLANK,
					themeDisplay.getLocale(), firstName, StringPool.BLANK, lastName, 0, 0,
					true, 1, 1, 1971, StringPool.BLANK,
					new long[] { themeDisplay.getScopeGroupId() },
					new long[] {}, new long[] {}, new long[] {}, false,
					serviceContext);
thumbnail
Bharamani P Tashildar,修改在8 年前。

RE: How to insert data in User table through own portlet ??

Junior Member 帖子: 48 加入日期: 14-8-27 最近的帖子
Thank s Harish Sir
Its working Fine