设为首页 收藏本站
查看: 416|回复: 0

[经验分享] Full Web Application Tomcat JSF Primefaces JPA Hibernate – Part 2

[复制链接]

尚未签到

发表于 2017-2-7 07:45:50 | 显示全部楼层 |阅读模式
Full Web Application Tomcat JSF Primefaces JPA Hibernate – Part 2
This post continues from part 1 of this tutorial.
In the “com.mb” package you will need to create the classes bellow:

package com.mb;
import org.primefaces.context.RequestContext;
import com.util.JSFMessageUtil;
public class AbstractMB {
private static final String KEEP_DIALOG_OPENED = 'KEEP_DIALOG_OPENED';
public AbstractMB() {
super();
}
protected void displayErrorMessageToUser(String message) {
JSFMessageUtil messageUtil = new JSFMessageUtil();
messageUtil.sendErrorMessageToUser(message);
}
protected void displayInfoMessageToUser(String message) {
JSFMessageUtil messageUtil = new JSFMessageUtil();
messageUtil.sendInfoMessageToUser(message);
}
protected void closeDialog(){
getRequestContext().addCallbackParam(KEEP_DIALOG_OPENED, false);
}
protected void keepDialogOpen(){
getRequestContext().addCallbackParam(KEEP_DIALOG_OPENED, true);
}
protected RequestContext getRequestContext(){
return RequestContext.getCurrentInstance();
}
}



package com.mb;
import java.io.Serializable;
import java.util.List;
import javax.faces.bean.*;
import com.facade.DogFacade;
import com.model.Dog;
@ViewScoped
@ManagedBean
public class DogMB extends AbstractMB implements Serializable {
private static final long serialVersionUID = 1L;
private Dog dog;
private List<Dog> dogs;
private DogFacade dogFacade;
public DogFacade getDogFacade() {
if (dogFacade == null) {
dogFacade = new DogFacade();
}
return dogFacade;
}
public Dog getDog() {
if (dog == null) {
dog = new Dog();
}
return dog;
}
public void setDog(Dog dog) {
this.dog = dog;
}
public void createDog() {
try {
getDogFacade().createDog(dog);
closeDialog();
displayInfoMessageToUser('Created With Sucess');
loadDogs();
resetDog();
} catch (Exception e) {
keepDialogOpen();
displayErrorMessageToUser('Ops, we could not create. Try again later');
e.printStackTrace();
}
}
public void updateDog() {
try {
getDogFacade().updateDog(dog);
closeDialog();
displayInfoMessageToUser('Updated With Sucess');
loadDogs();
resetDog();
} catch (Exception e) {
keepDialogOpen();
displayErrorMessageToUser('Ops, we could not create. Try again later');
e.printStackTrace();
}
}
public void deleteDog() {
try {
getDogFacade().deleteDog(dog);
closeDialog();
displayInfoMessageToUser('Deleted With Sucess');
loadDogs();
resetDog();
} catch (Exception e) {
keepDialogOpen();
displayErrorMessageToUser('Ops, we could not create. Try again later');
e.printStackTrace();
}
}
public List<Dog> getAllDogs() {
if (dogs == null) {
loadDogs();
}
return dogs;
}
private void loadDogs() {
dogs = getDogFacade().listAll();
}
public void resetDog() {
dog = new Dog();
}
}



package com.mb;
import java.io.Serializable;
import javax.faces.bean.*;
import javax.faces.context.FacesContext;
import javax.servlet.http.HttpServletRequest;
import com.model.User;
@SessionScoped
@ManagedBean(name='userMB')
public class UserMB implements Serializable {
public static final String INJECTION_NAME = '#{userMB}';
private static final long serialVersionUID = 1L;
private User user;
public boolean isAdmin() {
return user.isAdmin();
}
public boolean isDefaultUser() {
return user.isUser();
}
public String logOut() {
getRequest().getSession().invalidate();
return '/pages/public/login.xhtml';
}
private HttpServletRequest getRequest() {
return (HttpServletRequest) FacesContext.getCurrentInstance().getExternalContext().getRequest();
}
public User getUser() {
return user;
}
public void setUser(User user) {
this.user = user;
}
}



package com.mb;
import java.io.Serializable;
import java.util.*;
import javax.faces.bean.*;
import com.facade.*;
import com.model.*;
import com.sun.faces.context.flash.ELFlash;
@ViewScoped
@ManagedBean
public class PersonMB extends AbstractMB implements Serializable {
private static final long serialVersionUID = 1L;
private static final String SELECTED_PERSON = 'selectedPerson';
private Dog dog;
private Person person;
private Person personWithDogs;
private Person personWithDogsForDetail;
private List<Dog> allDogs;
private List<Person> persons;
private DogFacade dogFacade;
private PersonFacade personFacade;
public void createPerson() {
try {
getPersonFacade().createPerson(person);
closeDialog();
displayInfoMessageToUser('Created With Sucess');
loadPersons();
resetPerson();
} catch (Exception e) {
keepDialogOpen();
displayErrorMessageToUser('Ops, we could not create. Try again later');
e.printStackTrace();
}
}
public void updatePerson() {
try {
getPersonFacade().updatePerson(person);
closeDialog();
displayInfoMessageToUser('Updated With Sucess');
loadPersons();
resetPerson();
} catch (Exception e) {
keepDialogOpen();
displayErrorMessageToUser('Ops, we could not create. Try again later');
e.printStackTrace();
}
}
public void deletePerson() {
try {
getPersonFacade().deletePerson(person);
closeDialog();
displayInfoMessageToUser('Deleted With Sucess');
loadPersons();
resetPerson();
} catch (Exception e) {
keepDialogOpen();
displayErrorMessageToUser('Ops, we could not create. Try again later');
e.printStackTrace();
}
}
public void addDogToPerson() {
try {
getPersonFacade().addDogToPerson(dog.getId(), personWithDogs.getId());
closeDialog();
displayInfoMessageToUser('Added With Sucess');
reloadPersonWithDogs();
resetDog();
} catch (Exception e) {
keepDialogOpen();
displayErrorMessageToUser('Ops, we could not create. Try again later');
e.printStackTrace();
}
}
public void removeDogFromPerson() {
try {
getPersonFacade().removeDogFromPerson(dog.getId(), personWithDogs.getId());
closeDialog();
displayInfoMessageToUser('Removed With Sucess');
reloadPersonWithDogs();
resetDog();
} catch (Exception e) {
keepDialogOpen();
displayErrorMessageToUser('Ops, we could not create. Try again later');
e.printStackTrace();
}
}
public Person getPersonWithDogs() {
if (personWithDogs == null) {
if (person == null) {
person = (Person) ELFlash.getFlash().get(SELECTED_PERSON);
}
personWithDogs = getPersonFacade().findPersonWithAllDogs(person.getId());
}
return personWithDogs;
}
public void setPersonWithDogsForDetail(Person person) {
personWithDogsForDetail = getPersonFacade().findPersonWithAllDogs(person.getId());
}
public Person getPersonWithDogsForDetail() {
if (personWithDogsForDetail == null) {
personWithDogsForDetail = new Person();
personWithDogsForDetail.setDogs(new ArrayList<Dog>());
}
return personWithDogsForDetail;
}
public void resetPersonWithDogsForDetail(){
personWithDogsForDetail = new Person();
}
public String editPersonDogs() {
ELFlash.getFlash().put(SELECTED_PERSON, person);
return '/pages/protected/defaultUser/personDogs/personDogs.xhtml';
}
public List<Dog> complete(String name) {
List<Dog> queryResult = new ArrayList<Dog>();
if (allDogs == null) {
dogFacade = new DogFacade();
allDogs = dogFacade.listAll();
}
allDogs.removeAll(personWithDogs.getDogs());
for (Dog dog : allDogs) {
if (dog.getName().toLowerCase().contains(name.toLowerCase())) {
queryResult.add(dog);
}
}
return queryResult;
}
public PersonFacade getPersonFacade() {
if (personFacade == null) {
personFacade = new PersonFacade();
}
return personFacade;
}
public Person getPerson() {
if (person == null) {
person = new Person();
}
return person;
}
public void setPerson(Person person) {
this.person = person;
}
public List<Person> getAllPersons() {
if (persons == null) {
loadPersons();
}
return persons;
}
private void loadPersons() {
persons = getPersonFacade().listAll();
}
public void resetPerson() {
person = new Person();
}
public Dog getDog() {
if (dog == null) {
dog = new Dog();
}
return dog;
}
public void setDog(Dog dog) {
this.dog = dog;
}
public void resetDog() {
dog = new Dog();
}
private void reloadPersonWithDogs() {
personWithDogs = getPersonFacade().findPersonWithAllDogs(person.getId());
}
}



package com.mb;
import java.io.Serializable;
import java.util.*;
import javax.faces.bean.*;
import com.facade.*;
import com.model.*;
import com.sun.faces.context.flash.ELFlash;
@ViewScoped
@ManagedBean
public class PersonMB extends AbstractMB implements Serializable {
private static final long serialVersionUID = 1L;
private static final String SELECTED_PERSON = 'selectedPerson';
private Dog dog;
private Person person;
private Person personWithDogs;
private Person personWithDogsForDetail;
private List<Dog> allDogs;
private List<Person> persons;
private DogFacade dogFacade;
private PersonFacade personFacade;
public void createPerson() {
try {
getPersonFacade().createPerson(person);
closeDialog();
displayInfoMessageToUser('Created With Sucess');
loadPersons();
resetPerson();
} catch (Exception e) {
keepDialogOpen();
displayErrorMessageToUser('Ops, we could not create. Try again later');
e.printStackTrace();
}
}
public void updatePerson() {
try {
getPersonFacade().updatePerson(person);
closeDialog();
displayInfoMessageToUser('Updated With Sucess');
loadPersons();
resetPerson();
} catch (Exception e) {
keepDialogOpen();
displayErrorMessageToUser('Ops, we could not create. Try again later');
e.printStackTrace();
}
}
public void deletePerson() {
try {
getPersonFacade().deletePerson(person);
closeDialog();
displayInfoMessageToUser('Deleted With Sucess');
loadPersons();
resetPerson();
} catch (Exception e) {
keepDialogOpen();
displayErrorMessageToUser('Ops, we could not create. Try again later');
e.printStackTrace();
}
}
public void addDogToPerson() {
try {
getPersonFacade().addDogToPerson(dog.getId(), personWithDogs.getId());
closeDialog();
displayInfoMessageToUser('Added With Sucess');
reloadPersonWithDogs();
resetDog();
} catch (Exception e) {
keepDialogOpen();
displayErrorMessageToUser('Ops, we could not create. Try again later');
e.printStackTrace();
}
}
public void removeDogFromPerson() {
try {
getPersonFacade().removeDogFromPerson(dog.getId(), personWithDogs.getId());
closeDialog();
displayInfoMessageToUser('Removed With Sucess');
reloadPersonWithDogs();
resetDog();
} catch (Exception e) {
keepDialogOpen();
displayErrorMessageToUser('Ops, we could not create. Try again later');
e.printStackTrace();
}
}
public Person getPersonWithDogs() {
if (personWithDogs == null) {
if (person == null) {
person = (Person) ELFlash.getFlash().get(SELECTED_PERSON);
}
personWithDogs = getPersonFacade().findPersonWithAllDogs(person.getId());
}
return personWithDogs;
}
public void setPersonWithDogsForDetail(Person person) {
personWithDogsForDetail = getPersonFacade().findPersonWithAllDogs(person.getId());
}
public Person getPersonWithDogsForDetail() {
if (personWithDogsForDetail == null) {
personWithDogsForDetail = new Person();
personWithDogsForDetail.setDogs(new ArrayList<Dog>());
}
return personWithDogsForDetail;
}
public void resetPersonWithDogsForDetail(){
personWithDogsForDetail = new Person();
}
public String editPersonDogs() {
ELFlash.getFlash().put(SELECTED_PERSON, person);
return '/pages/protected/defaultUser/personDogs/personDogs.xhtml';
}
public List<Dog> complete(String name) {
List<Dog> queryResult = new ArrayList<Dog>();
if (allDogs == null) {
dogFacade = new DogFacade();
allDogs = dogFacade.listAll();
}
allDogs.removeAll(personWithDogs.getDogs());
for (Dog dog : allDogs) {
if (dog.getName().toLowerCase().contains(name.toLowerCase())) {
queryResult.add(dog);
}
}
return queryResult;
}
public PersonFacade getPersonFacade() {
if (personFacade == null) {
personFacade = new PersonFacade();
}
return personFacade;
}
public Person getPerson() {
if (person == null) {
person = new Person();
}
return person;
}
public void setPerson(Person person) {
this.person = person;
}
public List<Person> getAllPersons() {
if (persons == null) {
loadPersons();
}
return persons;
}
private void loadPersons() {
persons = getPersonFacade().listAll();
}
public void resetPerson() {
person = new Person();
}
public Dog getDog() {
if (dog == null) {
dog = new Dog();
}
return dog;
}
public void setDog(Dog dog) {
this.dog = dog;
}
public void resetDog() {
dog = new Dog();
}
private void reloadPersonWithDogs() {
personWithDogs = getPersonFacade().findPersonWithAllDogs(person.getId());
}
}



package com.mb;
import javax.faces.bean.*;
import javax.faces.context.FacesContext;
import javax.servlet.http.HttpServletRequest;
import com.facade.UserFacade;
import com.model.User;
@RequestScoped
@ManagedBean
public class LoginMB extends AbstractMB {
@ManagedProperty(value = UserMB.INJECTION_NAME)
private UserMB userMB;
private String email;
private String password;
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String login() {
UserFacade userFacade = new UserFacade();
User user = userFacade.isValidLogin(email, password);
if(user != null){
userMB.setUser(user);
FacesContext context = FacesContext.getCurrentInstance();
HttpServletRequest request = (HttpServletRequest) context.getExternalContext().getRequest();
request.getSession().setAttribute('user', user);
return '/pages/protected/index.xhtml';
}
displayErrorMessageToUser('Check your email/password');
return null;
}
public void setUserMB(UserMB userMB) {
this.userMB = userMB;
}
}


About the above code:
■All ManagedBeans are responsible only for the VIEW actions; the ManagedBeans should be responsible to handle the only outcome of the business methods. There are no business rules in the ManagedBeans. It is very easy to do some business actions in the view layer but is not a good practice.
■The LoginMB class uses another ManagedBean (UserMB) there were injected inside of it. To inject a ManagedBean inside another ManagedBean you must do as bellow:■Uses the @ManagedProperty on the top of the injected ManagedBean
■Create a set method to the property like “loginMB.setUserMB(…)“
■The PersonMB class could receive refactoring actions because it is too big. The PersonMB is like that to make easer for rookie developers to understand the code faster.
Observations about @ViewScoped
You will see in the managed beans with the @ViewScoped annotation some reload and reset methods. Both methods are required to reset the objects state; e.g. a dog object would hold values from the view after a method execution (persist in the database, display values in a dialog). If the user open de create dialog and successfully create a dog this dog object will hold all values while the user stays in the same page. If the user opens the create dialog again all the data of the last recorded dog will be displayed there. That is why we have the reset methods.
If you update an object in the database the object in the user view must receive this update too, the ManagedBean objects must receive this new data. If you updated a dog name in the database the list of dog should receive this updated dog too. You can query this new data in the database or just update the managed bean values.
A developer must be aware of:
■Reload the managed bean data querying the database (the reload methods): if the fired query to reload the ManagedBean object comes with a huge amount of data his query may affect the application performance. A developer could use a datatable with lazy load. Click here to see more about Lazy Datatable.
■Reload the updated object directly in the managed bean without querying the database: imagine that the user1 updates the dog1 name in the database and at the same time user2 updates the dog2 age. The user1 will see the old data about the dog2 that could cause a database integrity issue if the user1 updates the dog2. A solution to this approach could be a version field in the database table. Before the update takes place this field would be checked. If the version field does not hold the same value found in the database an exception could be raised. With this approach if the user1 updates the dog2 the version value would not be the same.
JSFMessageUtil
In the package “com.util” create the class bellow:

package com.util;
import javax.faces.application.FacesMessage;
import javax.faces.application.FacesMessage.Severity;
import javax.faces.context.FacesContext;
public class JSFMessageUtil {
public void sendInfoMessageToUser(String message) {
FacesMessage facesMessage = createMessage(FacesMessage.SEVERITY_INFO, message);
addMessageToJsfContext(facesMessage);
}
public void sendErrorMessageToUser(String message) {
FacesMessage facesMessage = createMessage(FacesMessage.SEVERITY_WARN, message);
addMessageToJsfContext(facesMessage);
}
private FacesMessage createMessage(Severity severity, String mensagemErro) {
return new FacesMessage(severity, mensagemErro, mensagemErro);
}
private void addMessageToJsfContext(FacesMessage facesMessage) {
FacesContext.getCurrentInstance().addMessage(null, facesMessage);
}
}

This class will handle all JSF Messages that will be displayed to the user. This class will help our ManagedBeans to lose coupling between the classes.
It is also a good idea to create a class to handle the dialogs actions.
Configurations file
In the source “src” folder create the following files:
“log4.properties”


# Direct log messages to stdout
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.Target=System.out
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n
# Root logger option
log4j.rootLogger=ERROR, stdout
# Hibernate logging options (INFO only shows startup messages)
log4j.logger.org.hibernate=ERROR
# Log JDBC bind parameter runtime arguments
#log4j.logger.org.hibernate.type=TRACE


“messages.properties”

#Actions
welcomeMessage=Hello! Show me the best soccer team logo ever
update=Update
create=Create
delete=Delete
cancel=Cancel
detail=Detail
logIn=Log In
add=Add
remove=Remove
ok=Ok
logOut= Log Out
javax.faces.component.UIInput.REQUIRED={0}: is empty. Please, provide some value
javax.faces.validator.LengthValidator.MINIMUM={1}: Length is less than allowable minimum of u2018u2019{0}u2019u2019
noRecords=No data to display
deleteRecord=Do you want do delete the record
#Login / Roles Validations
loginHello=Login to access secure pages
loginUserName=Username
loginPassword=Password
logout=Log Out
loginWelcomeMessage=Welcome
accessDeniedHeader=Wow, our ninja cat found you!
accessDeniedText=Sorry but you can not access that page. If you try again, that ninja cat gonna kick you harder! >= )
accessDeniedButton=You got-me, take me out. =/
#Person
person=Person
personPlural=Persons
personName=Name
personAge=Age
personDogs=These dogs belongs to
personAddDogTo=Add the selected Dog To
personRemoveDogFrom=Remove the selected Dog from
personEditDogs=Edit Dogs
#Dog
dog=Dog
dogPlural=Dogs
dogName=Name
dogAge=Age


Take a look at the “lo4j.properties” the line #log4j.logger.org.hibernate.type=TRACE is commented. If you want to see the created query by the Hibernate you need to edit other configurations of the file from ERROR to DEBUG and remove the # from the line above.
You will be able to see the Hibernate executed query and its parameters.
xhtml Pages, Facelets

Let us see how to apply Facelets to a project. Create the files bellow inside the folder “/WebContent/pages/protected/templates/”:
“left.xhtml”

<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN'
'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml'
xmlns:ui='http://java.sun.com/jsf/facelets'
xmlns:h='http://java.sun.com/jsf/html'
xmlns:p='http://primefaces.org/ui'>
<h:body>
<ui:composition>
<h:form>
<p:commandButton styleClass='menuButton' icon='ui-icon-arrowstop-1-e' rendered='#{userMB.admin or userMB.defaultUser}' action='/pages/protected/defaultUser/defaultUserIndex.xhtml' value='#{bundle.personPlural}' ajax='false' immediate='true' />
<br />
<p:commandButton styleClass='menuButton' icon='ui-icon-arrowstop-1-e' rendered='#{userMB.admin}' action='/pages/protected/admin/adminIndex.xhtml' value='#{bundle.dogPlural}' ajax='false' immediate='true' />
<br />
</h:form>
</ui:composition>
</h:body>
</html>


“master.xhtml”

<?xml version='1.0' encoding='UTF-8' ?>  
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN'
'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml'
xmlns:ui='http://java.sun.com/jsf/facelets'
xmlns:h='http://java.sun.com/jsf/html'
xmlns:p='http://primefaces.org/ui'
xmlns:f='http://java.sun.com/jsf/core'>
<h:head>
<title>CrudJSF</title>
<h:outputStylesheet library='css' name='main.css' />
<meta http-equiv='Content-Type' content='text/html; charset=UTF-8' />
</h:head>
<h:body>
<f:view contentType='text/html; charset=UTF-8' encoding='UTF-8' >
<div id='divTop' style='vertical-align: middle;'>
<ui:insert name='divTop'>
<ui:include src='top.xhtml' />
</ui:insert>
</div>
<div id='divLeft'>
<ui:insert name='divLeft'>
<ui:include src='left.xhtml' />
</ui:insert>
</div>
<div id='divMain'>
<p:growl id='messageGrowl' />
<ui:insert name='divMain' />
</div>
<h:outputScript library='javascript' name='jscodes.js' />
</f:view>
</h:body>
</html>


“top.xhtml”

<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN'
'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml'
xmlns:ui='http://java.sun.com/jsf/facelets'
xmlns:h='http://java.sun.com/jsf/html'
xmlns:p='http://primefaces.org/ui'>
<h:body>   
<ui:composition>
<div id='topMessage'>
<h1>
<h:form>
#{bundle.loginWelcomeMessage}: #{userMB.user.name} | <p:commandButton value='#{bundle.logOut}' action='#{userMB.logOut()}' ajax='false' style='font-size: 20px;' />
</h:form>
</h1>
</div>
</ui:composition>   
</h:body>
</html>


The above code will be the base for all the xhtml pages of the application. It is very important to apply the Facelets pattern to re-use the xhtml code. Bellow you can see how to apply Facelets in the xhtml page, notice that the developer just need to overwrite the desired section:

<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml' xmlns:ui='http://java.sun.com/jsf/facelets' xmlns:h='http://java.sun.com/jsf/html'
xmlns:f='http://java.sun.com/jsf/core' xmlns:p='http://primefaces.org/ui' >
<h:body>
<ui:composition template='/pages/protected/templates/master.xhtml'>
<ui:define name='divMain'>
#{bundle.welcomeMessage} :<br/>
<h:graphicImage library='images' name='logoReal.png' />
</ui:define>
</ui:composition>
</h:body>
</html>


from:http://www.javacodegeeks.com/2012/07/full-web-application-tomcat-jsf_04.html

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-338502-1-1.html 上篇帖子: 网页能运行··就是TOMCAT报错··不知道咋回事? 下篇帖子: 使用jBPM开发企业流程应用之在Tomcat上部署流程引擎及控制台
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表